diff --git a/flake.nix b/flake.nix index 807d4f6..2257d53 100644 --- a/flake.nix +++ b/flake.nix @@ -85,7 +85,7 @@ # NixOS configuration entrypoint nixosConfigurations = { - #Personal laptop, thinkpad t490 + #Traverse's laptop, thinkpad t490 athame = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs outputs; @@ -140,6 +140,21 @@ ./nixos/zerotier.nix ]; }; + selaphiel = nixpkgs.lib.nixosSystem { + #Ingrid thinkpad t480 + specialArgs = { + inherit inputs outputs; + hostname = "Selaphiel"; + mainUser = "ingrid"; + }; + modules = [ + ./nixos/configuration.nix + ./nixos/kde-desktop.nix + ./nixos/family.nix + ./nixos/zerotier.nix + ./nixos/gaming.nix + ]; + }; gwen = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs outputs; diff --git a/hostnames.md b/hostnames.md index 9ff260e..002e26a 100644 --- a/hostnames.md +++ b/hostnames.md @@ -14,7 +14,7 @@ Jeremiel #Metatron Sandalphon Sariel -Selaphiel +#Selaphiel Barachiel Zaphkiel Gadreel diff --git a/nixos/gaming.nix b/nixos/gaming.nix index 31e6d95..b268e9e 100644 --- a/nixos/gaming.nix +++ b/nixos/gaming.nix @@ -8,6 +8,7 @@ }; environment.systemPackages = with pkgs; [ + pkgs.discord ]; }