diff --git a/flake.nix b/flake.nix index 99d40bd..11bf155 100644 --- a/flake.nix +++ b/flake.nix @@ -28,7 +28,7 @@ inherit (self) outputs; in { - nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { + nixosConfigurations.dnsc-machine = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs outputs; }; modules = [ diff --git a/home/linux.nix b/home/linux.nix index ab197f6..74ca911 100644 --- a/home/linux.nix +++ b/home/linux.nix @@ -30,6 +30,7 @@ ../modules/fish ../modules/wezterm ../modules/nvim + ../modules/wm/niri ]; programs.home-manager.enable = true; diff --git a/hosts/dnsc-machine/default.nix b/hosts/dnsc-machine/default.nix index d9191af..a3ea9f6 100644 --- a/hosts/dnsc-machine/default.nix +++ b/hosts/dnsc-machine/default.nix @@ -15,6 +15,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix inputs.home-manager.nixosModules.home-manager + ../../modules/wm/ly ]; # Bootloader. diff --git a/modules/wm/ly/default.nix b/modules/wm/ly/default.nix index 2efa817..6d3eeab 100644 --- a/modules/wm/ly/default.nix +++ b/modules/wm/ly/default.nix @@ -1,3 +1,6 @@ { - services.displayManager.ly.enable = true; + services.displayManager = { + enable = true; + ly.enable = true; + }; }