all repos — dotfiles @ dd95f11e7a5e473f513a87dc2d8450fb35a65ea4

my *nix dotfiles

nix/sini: rename
Anirudh Oppiliappan x@icyphox.sh
Sun, 16 Jun 2024 23:40:49 +0300
commit

dd95f11e7a5e473f513a87dc2d8450fb35a65ea4

parent

a3f3c38ee43a53b55d44f2b90a2306776435d6c3

3 files changed, 3 insertions(+), 3 deletions(-)

jump to
M flake.nixflake.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.nixhosts/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;