this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: remove explicit system in flake

Already defined with the generated nixpkgs.hostPlatform

+6 -4
+1 -1
configuration.nix
··· 219 219 gvfs.enable = true; 220 220 yggdrasil = { 221 221 enable = true; 222 - persistentKeys = true; 222 + persistentKeys = true; # /var/lib/yggdrasil/keys.json 223 223 settings = { 224 224 Peers = [ 225 225 # https://publicpeers.neilalexander.dev
+1 -3
flake.nix
··· 21 21 outputs = { self, nixpkgs, disko, nixos-hardware, home-manager }: { 22 22 nixosConfigurations = { 23 23 ryzentower = nixpkgs.lib.nixosSystem { 24 - system = "x86_64-linux"; 25 24 modules = [ 26 25 disko.nixosModules.disko 27 26 ./configuration.nix ··· 32 31 }; 33 32 34 33 thinkpadz13 = nixpkgs.lib.nixosSystem { 35 - system = "x86_64-linux"; 36 34 modules = [ 37 35 ./configuration.nix 38 36 nixos-hardware.nixosModules.lenovo-thinkpad-z13-gen1 ··· 43 41 }; 44 42 45 43 testvm = nixpkgs.lib.nixosSystem { 46 - system = "x86_64-linux"; 47 44 modules = [ 45 + disko.nixosModules.disko 48 46 ./configuration.nix 49 47 home-manager.nixosModules.home-manager 50 48 ./users/khuedoan.nix
+4
hosts/testvm/default.nix
··· 16 16 ]; 17 17 }; 18 18 19 + nixpkgs = { 20 + hostPlatform = "x86_64-linux"; 21 + }; 22 + 19 23 users.users.khuedoan = { 20 24 password = "testvm"; 21 25 };