diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -9,17 +9,19 @@ url = "github:nix-community/home-manager/release-23.05"; inputs.nixpkgs.follows = "nixpkgs-unstable"; }; + + hyprland.url = "github:hyprwm/Hyprland"; }; - outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }: { + outputs = { nixpkgs, nixpkgs-unstable, home-manager, hyprland, ... }: { nixosConfigurations = { - zenbook = nixpkgs.lib.nixosSystem { + nixos-zenbook = nixpkgs.lib.nixosSystem { modules = [ ./machines/zenbook/configuration.nix - ./hardware-configuation.nix + ./machines/zenbook/hardware-configuation.nix # Default users ./modules/user-profiles/defin.nix @@ -34,10 +36,12 @@ # arguments to home.nix } + hyprland.homeManagerModules.default {wayland.windowManager.hyprland.enable = true;} + ./modules/hyprland.nix + ./modules/bluetooth.nix ./modules/environment.nix ./modules/kde-connect.nix - ./modules/hyprland.nix ./modules/nix-common.nix ./modules/services.nix ./modules/sway.nix |
