My NixOS dotfiles
0

Configure Feed

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

✨ fant0mib0t server

Simon R. - fantomitechno (Jun 23, 2026, 2:59 PM +0200) 18dc24b9 56a8cc62

+25
+3
flake.nix
··· 76 76 fantomitechno-laptop = commonSystem "laptop"; 77 77 fantomitechno-desktop = commonSystem "desktop"; 78 78 fantomitechno-msi = commonSystem "msi"; 79 + 80 + # Servers 79 81 conseil = commonSystem "conseil"; 82 + fant0mib0t = commonSystem "fant0mib0t"; 80 83 }; 81 84 }; 82 85 }
+22
hosts/fant0mib0t/default.nix
··· 1 + { 2 + pkgs, 3 + ... 4 + }: 5 + 6 + { 7 + imports = [ 8 + ./hardware-configuration.nix 9 + ../server.nix 10 + ]; 11 + 12 + # Bootloader 13 + boot = { 14 + loader = { 15 + systemd-boot.enable = true; 16 + efi.canTouchEfiVariables = true; 17 + }; 18 + kernelPackages = pkgs.linuxPackages; 19 + }; 20 + 21 + system.stateVersion = "26.05"; 22 + }