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 # NixOS configuration entrypoint
nixosConfigurations = { nixosConfigurations = {
#Personal laptop, thinkpad t490 #Traverse's laptop, thinkpad t490
athame = nixpkgs.lib.nixosSystem { athame = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs outputs; inherit inputs outputs;
@ -140,6 +140,21 @@
./nixos/zerotier.nix ./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 { gwen = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs outputs; inherit inputs outputs;

View File

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

View File

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