Reorganized the repo

This commit is contained in:
willifan 2024-07-06 21:33:59 +02:00
parent 5176e7cdf8
commit f1b559ba06
62 changed files with 182 additions and 45 deletions

View file

@ -45,10 +45,13 @@
system = "x86_64-linux";
in
nixpkgs.lib.nixosSystem {
specialArgs = {
hostname = "Lenni";
type = "desktop";
inherit system;
};
modules = [
attrs.home-manager.nixosModules.home-manager
{
@ -60,16 +63,20 @@
./hosts
./users/willifan
];
};
Puenktchen = let
system = "x86_64-linux";
in
nixpkgs.lib.nixosSystem {
specialArgs = {
hostname = "Puenktchen";
type = "desktop";
inherit system;
};
modules = [
attrs.home-manager.nixosModules.home-manager
{
@ -84,6 +91,34 @@
./hosts
./users/willifan
];
};
Anton = let
system = "x86_64-linux";
in
nixpkgs.lib.nixosSystem {
specialArgs = {
hostname = "Anton";
type = "server";
inherit system;
};
modules = [
attrs.home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
attrs.disko.nixosModules.disko
attrs.nixos-hardware.nixosModules.common-cpu-amd
attrs.nixos-hardware.nixosModules.common-cpu-amd-pstate
attrs.nixos-hardware.nixosModules.common-cpu-amd-zenpower
./hosts
./users/willifan
];
};
};