diff options
Diffstat (limited to 'hosts/limbo/default.nix')
| -rw-r--r-- | hosts/limbo/default.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/hosts/limbo/default.nix b/hosts/limbo/default.nix new file mode 100644 index 0000000..6312fb9 --- /dev/null +++ b/hosts/limbo/default.nix @@ -0,0 +1,33 @@ +{ config, ... }: +{ + imports = [ + ../../common/core.nix + ../../common/greetd.nix + ../../common/niri.nix + ../../common/pipewire.nix + ../../common/region/na-east.nix + ./disks.nix + ]; + + home-manager = { + useGlobalPkgs = true; + users.rosa = { + imports = [ + ../../user/wm + ]; + + home = { + homeDirectory = "/home/rosa"; + stateVersion = "26.05"; + username = "rosa"; + }; + }; + }; + + networking = { + hostName = "limbo"; + networkmanager.enable = true; + }; + + system.stateVersion = "26.05"; +} |
