My NixOS dotfiles
0

Configure Feed

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

๐Ÿšš Move home manager version to specific host

Simon R. - fantomitechno (Jun 23, 2026, 1:04 PM +0200) 40e52919 9925e1b7

+16 -5
-5
flake.nix
··· 66 66 dotfileFolder = "/home/fantomitechno/dotfiles"; 67 67 flakes = self; 68 68 }; 69 - 70 - users."fantomitechno" = { lib, ... }: { 71 - home.homeDirectory = "/home/fantomitechno"; 72 - home.stateVersion = "26.05"; 73 - }; 74 69 }; 75 70 } 76 71 ];
+4
hosts/default.nix
··· 41 41 options = "--delete-older-than 14d"; 42 42 }; 43 43 }; 44 + 45 + home-manager.users."fantomitechno" = { lib, ... }: { 46 + home.homeDirectory = "/home/fantomitechno"; 47 + }; 44 48 }
+4
hosts/desktop/default.nix
··· 64 64 }; 65 65 66 66 system.stateVersion = "26.05"; 67 + 68 + home-manager.users."fantomitechno" = { lib, ... }: { 69 + home.stateVersion = "26.05"; 70 + }; 67 71 }
+4
hosts/laptop/default.nix
··· 56 56 }; 57 57 58 58 system.stateVersion = "26.05"; 59 + 60 + home-manager.users."fantomitechno" = { lib, ... }: { 61 + home.stateVersion = "26.05"; 62 + }; 59 63 }
+4
hosts/msi/default.nix
··· 59 59 }; 60 60 61 61 system.stateVersion = "26.05"; 62 + 63 + home-manager.users."fantomitechno" = { lib, ... }: { 64 + home.stateVersion = "26.05"; 65 + }; 62 66 }