Personal Nix setup
0
fork

Configure Feed

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

Update fanta config

+7 -1
+6
machines/fanta/configuration.nix
··· 3 3 { 4 4 imports = [ ]; 5 5 6 + modules = { 7 + fonts.enable = true; 8 + development.enable = true; 9 + nvim.enable = true; 10 + }; 11 + 6 12 system.stateVersion = 4; 7 13 # Disable path verification of $NIX_PATH 8 14 system.checks.verifyNixPath = false;
+1 -1
modules/desktop/default.nix
··· 13 13 }; 14 14 }; 15 15 16 - config.modules.server = { 16 + config.modules.desktop = { 17 17 enable = if helpers.isLinux then (mkDefault false) else (mkForce false); 18 18 }; 19 19 } // helpers.linuxAttrs {