fix: replace 'gnome' desktop with 'niri'

This commit is contained in:
2025-12-01 20:24:06 +01:00
parent 8ae482d846
commit 1cba6c968a
5 changed files with 10 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ let
in in
{ {
imports = [ imports = [
../../modules/dconf.nix # TODO: Only enable when on Gnome? # ../../modules/dconf.nix # TODO: Only enable when on Gnome?
../../modules/git.nix ../../modules/git.nix
../../modules/k9s.nix ../../modules/k9s.nix
(import ../../modules/taskwarrior.nix { (import ../../modules/taskwarrior.nix {

View File

@@ -22,7 +22,7 @@ in
inherit lib; inherit lib;
inherit config; inherit config;
}) })
../../modules/gnome.nix ../../modules/desktops/niri.nix
../../modules/bluetooth.nix ../../modules/bluetooth.nix
../../modules/keyboard ../../modules/keyboard
(import ../../modules/networking.nix { hostName = "andromache"; }) (import ../../modules/networking.nix { hostName = "andromache"; })

View File

@@ -24,7 +24,7 @@ in
inherit config; inherit config;
device = "/dev/nvme0n1"; device = "/dev/nvme0n1";
}) })
../../modules/gnome.nix ../../modules/desktops/niri.nix
../../modules/bluetooth.nix ../../modules/bluetooth.nix
../../modules/keyboard ../../modules/keyboard
(import ../../modules/networking.nix { hostName = hostName; }) (import ../../modules/networking.nix { hostName = hostName; })

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
programs.niri.enable = true;
environment.systemPackages = with pkgs; [ wlsunset ];
}