update hyprland config and reorganize

This commit is contained in:
Kopatz
2023-11-29 18:37:22 +01:00
parent 610ab87030
commit 17bc2332f2
6 changed files with 37 additions and 17 deletions

View File

@@ -84,18 +84,20 @@
];
specialArgs = {
## Custom variables (e.g. ip, interface, etc)
vars = (import ./systems/server/userdata.nix);
vars = import ./systems/userdata-default.nix // import ./systems/server/userdata.nix;
inherit inputs ;
};
};
nixosConfigurations."kop-pc" = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
vars = import ./systems/userdata-default.nix // import ./systems/pc/userdata.nix;
inherit inputs ;
};
modules = [
./users/kopatz.nix
./modules/graphical/plasma.nix
./modules/graphical/hyprland.nix
./modules/graphical/shared.nix
./modules/hardware/nvidia.nix
./modules/hardware/ssd.nix
@@ -123,13 +125,14 @@
inherit system;
specialArgs = {
## Custom variables (e.g. ip, interface, etc)
vars = (import ./systems/laptop/userdata.nix);
vars = import ./systems/userdata-default.nix // import ./systems/laptop/userdata.nix;
inherit inputs;
};
modules = [
./users/kopatz.nix
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
# Todo: refactor file layout
./modules/graphical/hyprland.nix
./modules/graphical/shared.nix
./laptop/configuration.nix
./modules/virt-manager.nix