Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

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

feat: update nanna

cosmeak 1c0193a4 6908b525

+8 -4
+8 -4
modules/hosts/nanna/configuration.nix
··· 22 22 23 23 # System wide programs and applications 24 24 programs.firefox.enable = true; 25 - environment.systemPackages = with pkgs; [ 26 - git 27 - just 28 - ]; 25 + 26 + # Enable printing 27 + services.printing.enable = true; 28 + 29 + # Localization 30 + time.timeZone = "Europe/Paris"; 31 + i18n.defaultLocale = "fr_FR.UTF-8"; 29 32 }; 30 33 31 34 hosts.nanna = { 32 35 system = "x86_64-linux"; 36 + stateVersion = "25.11"; 33 37 modules = [ inputs.self.nixosModules.nanna ]; 34 38 }; 35 39 }