nix/sini: rename
Anirudh Oppiliappan x@icyphox.sh
Sun, 16 Jun 2024 23:40:49 +0300
3 files changed,
3 insertions(+),
3 deletions(-)
M
flake.nix
→
flake.nix
@@ -111,7 +111,7 @@ };
}; nixosConfigurations = { - denna = nixpkgs.lib.nixosSystem { + sini = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ({ config = { nix.registry.nixpkgs.flake = nixpkgs; }; })@@ -120,7 +120,7 @@ imports = [ nix-snapshotter.nixosModules.default ];
nixpkgs.overlays = [ nix-snapshotter.overlays.default ]; }) { - imports = [ ./hosts/denna/configuration.nix ]; + imports = [ ./hosts/sini/configuration.nix ]; _module.args.self = self; } ];
M
hosts/denna/configuration.nix
→
hosts/sini/configuration.nix
@@ -10,7 +10,7 @@ boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.initrd.luks.devices."luks-0ae4be28-55a1-4a0c-8518-c6d53540cb26".device = "/dev/disk/by-uuid/0ae4be28-55a1-4a0c-8518-c6d53540cb26"; - networking.hostName = "denna"; # Define your hostname. + networking.hostName = "sini"; # Define your hostname. networking.networkmanager.enable = true;