snowhawk: enable niri
This commit is contained in:
parent
2d490033f3
commit
8cae0adfb3
2 changed files with 5 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running `nixos-help`).
|
||||
|
||||
{ pkgs, inputs, lib, config, self, ... }:
|
||||
{ pkgs, inputs, lib, config, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
@ -18,7 +18,7 @@
|
|||
time.timeZone = "America/Los_Angeles";
|
||||
|
||||
snowhawk = {
|
||||
dwm.enable = true;
|
||||
niri.enable = true;
|
||||
syncthing.enable = true;
|
||||
plymouth.enable = true;
|
||||
};
|
||||
|
|
|
@ -11,6 +11,8 @@ in
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.niri.enable = false;
|
||||
programs.niri.enable = true;
|
||||
|
||||
services.displayManager.defaultSession = "niri";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue