restructure folders - 2

This commit is contained in:
2024-03-03 13:15:52 +01:00
parent 0ff29aca1a
commit 0fde604f96
8 changed files with 41 additions and 59 deletions

View File

@@ -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 ];
}
];