restructure folders - 2
This commit is contained in:
15
flake.nix
15
flake.nix
@@ -1,5 +1,5 @@
|
||||
{
|
||||
description = "My chaos NixOS flake";
|
||||
description = "My NixOS Flake";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
||||
@@ -8,12 +8,7 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# The xmonad-contrib flake depends upon and re-exports from the xmonad
|
||||
# flake. As such, you don't need to use the latter directly. If you wish to
|
||||
# use /only/ the xmonad flake, you should beware that the version of
|
||||
# contrib you get from nixpkgs might not build against it.
|
||||
xmonad-contrib.url = "github:xmonad/xmonad-contrib";
|
||||
|
||||
};
|
||||
|
||||
inputs.neovim-nightly-overlay.url =
|
||||
@@ -26,9 +21,11 @@
|
||||
./configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.elias = import ./home/default.nix;
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.elias = import ./home/default.nix;
|
||||
};
|
||||
nixpkgs.overlays = [ inputs.neovim-nightly-overlay.overlay ];
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user