update cloud to 24.11

This commit is contained in:
Grigory Shipunov 2025-01-02 18:45:55 +00:00
parent 93a64e8816
commit ddf9229e15
3 changed files with 6 additions and 2 deletions

View file

@ -71,10 +71,12 @@
cloud = nixpkgs-stable.lib.nixosSystem { cloud = nixpkgs-stable.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
moudles = [ modules = [
sops-nix.nixosModules.sops sops-nix.nixosModules.sops
./hosts/cloud ./hosts/cloud
./modules/basic-tools
]; ];
}; };
}; };

View file

@ -10,5 +10,5 @@
networking.domain = "oxapentane.com"; networking.domain = "oxapentane.com";
services.openssh.enable = true; services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9iYG5oHBq/poBn7Jf1/FGWWbAnbx+NKjs7qtT3uAK'' ]; users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9iYG5oHBq/poBn7Jf1/FGWWbAnbx+NKjs7qtT3uAK'' ];
system.stateVersion = "23.11"; system.stateVersion = "24.11";
} }

View file

@ -16,4 +16,6 @@
in builtins.mapAttrs (_name: v: { flake = v; }) flakes; in builtins.mapAttrs (_name: v: { flake = v; }) flakes;
nix.nixPath = lib.mapAttrsToList (name: value: "${name}=${value.outPath}") inputs.self.inputs; nix.nixPath = lib.mapAttrsToList (name: value: "${name}=${value.outPath}") inputs.self.inputs;
nixpkgs.config.allowUnfree = true;
} }