First build; Too many bugs...

This commit is contained in:
2026-03-27 23:54:05 +01:00
parent 8d326d27c9
commit 21bff544f3
27 changed files with 983 additions and 392 deletions

View File

@@ -7,7 +7,7 @@
# declarative Configs
home-manager = {
url = "github:nix-community/home-manager/main";
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
@@ -74,14 +74,18 @@
{
# $ nixos-rebuild switch --flake .#<name>
nixosConfigurations."cyper-desktop" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
{ nixpkgs.hostPlatform = "x86_64-linux"; }
./nixos
./hosts/cyper-desktop/configuration.nix
inputs.home-manager.nixosModules.home-manager
{
home-manager.extraSpecialArgs = { inherit inputs primaryUser self; };
home-manager.users.${primaryUser} = import ./home;
}
inputs.sops-nix.nixosModules.sops
];
specialArgs = { inherit inputs primaryUser; };
specialArgs = { inherit inputs primaryUser self; };
};
};