fix: replace 'gnome' desktop with 'niri'

This commit is contained in:
2026-03-11 21:25:22 +01:00
parent 82a4f44a19
commit 3c294d2194
5 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ let
in
{
imports = [
../../modules/dconf.nix # TODO: Only enable when on Gnome?
# ../../modules/dconf.nix # TODO: Only enable when on Gnome?
../../modules/git.nix
../../modules/k9s.nix
(import ../../modules/taskwarrior.nix {
+1 -1
View File
@@ -22,7 +22,7 @@ in
inherit lib;
inherit config;
})
../../modules/gnome.nix
../../modules/desktops/niri.nix
../../modules/bluetooth.nix
../../modules/keyboard
(import ../../modules/networking.nix { hostName = "andromache"; })
+1 -1
View File
@@ -24,7 +24,7 @@ in
inherit config;
device = "/dev/nvme0n1";
})
../../modules/gnome.nix
../../modules/desktops/niri.nix
../../modules/bluetooth.nix
../../modules/keyboard
(import ../../modules/networking.nix { hostName = hostName; })
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.niri.enable = true;
environment.systemPackages = with pkgs; [ wlsunset ];
}