My NixOS dotfiles
0

Configure Feed

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

✨ live iso

Simon R. - fantomitechno (Jun 24, 2026, 4:15 PM +0200) 91314cec 18dc24b9

+46
+11
flake.nix
··· 80 80 # Servers 81 81 conseil = commonSystem "conseil"; 82 82 fant0mib0t = commonSystem "fant0mib0t"; 83 + 84 + # Installer 85 + # nix build --no-link --print-out-paths ".#installer" 86 + installer = nixpkgs.lib.nixosSystem { 87 + inherit system; 88 + modules = [ 89 + ./modules/installer.nix 90 + ]; 91 + }; 92 + 83 93 }; 94 + installer = self.outputs.nixosConfigurations.installer.config.system.build.isoImage; 84 95 }; 85 96 }
+35
modules/installer.nix
··· 1 + { 2 + lib, 3 + modulesPath, 4 + pkgs, 5 + ... 6 + }: 7 + { 8 + imports = [ 9 + (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") 10 + ]; 11 + networking = { 12 + hostName = "fantomitechn-installer"; 13 + wireless = { 14 + enable = lib.mkForce false; 15 + iwd.enable = true; 16 + }; 17 + }; 18 + 19 + environment.systemPackages = with pkgs; [ 20 + btop 21 + curl 22 + dig 23 + duf 24 + ]; 25 + 26 + nix = { 27 + settings.experimental-features = [ 28 + "nix-command" 29 + "flakes" 30 + ]; 31 + }; 32 + time.timeZone = "Europe/Paris"; 33 + i18n.defaultLocale = "en_US.UTF-8"; 34 + system.stateVersion = "26.05"; 35 + }