Added laptop for ingridi

This commit is contained in:
Alex Davies 2024-09-14 09:29:53 -03:00
parent 2196c9aac3
commit b7fe8183e2
3 changed files with 18 additions and 2 deletions

View File

@ -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;

View File

@ -14,7 +14,7 @@ Jeremiel
#Metatron
Sandalphon
Sariel
Selaphiel
#Selaphiel
Barachiel
Zaphkiel
Gadreel

View File

@ -8,6 +8,7 @@
};
environment.systemPackages = with pkgs; [
pkgs.discord
];
}