My NixOS dotfiles
0

Configure Feed

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

♻️ change modules logic

Simon R. - fantomitechno (Jun 22, 2026, 9:04 AM +0200) 33397a5f 8c85d9d7

+11 -29
+11
hosts/computer.nix
··· 1 1 { pkgs, hostname, ... }: 2 2 3 3 { 4 + imports = builtins.map (i: ../modules/${i}) ([ 5 + "cli-apps" 6 + "desktop-apps" 7 + "fastfetch" 8 + "git" 9 + "wallpapers" 10 + "communication.nix" 11 + "greeter.nix" 12 + "terminal.nix" 13 + ]); 14 + 4 15 networking = { 5 16 networkmanager = { 6 17 enable = true;
-8
hosts/desktop/default.nix
··· 10 10 ../computer.nix 11 11 ] 12 12 ++ builtins.map (i: ../../modules/${i}) ([ 13 - "cli-apps" 14 13 "codium" 15 - "desktop-apps" 16 - "fastfetch" 17 - "git" 18 14 "niri-de" 19 - "wallpapers" 20 - "communication.nix" 21 15 "customisation.nix" 22 16 "editing.nix" 23 17 "games.nix" 24 18 "graphene.nix" 25 - "greeter.nix" 26 19 "jetbrain.nix" 27 20 "network.nix" 28 - "terminal.nix" 29 21 ]); 30 22 31 23 # Bootloader
-10
hosts/laptop/default.nix
··· 10 10 ../computer.nix 11 11 ] 12 12 ++ builtins.map (i: ../../modules/${i}) ([ 13 - "cli-apps" 14 13 "codium" 15 - "desktop-apps" 16 - "fastfetch" 17 - "git" 18 14 "kde" 19 15 "niri-de" 20 - "wallpapers" 21 16 "battery-notify.nix" 22 - "communication.nix" 23 17 "editing.nix" 24 18 "flint.nix" 25 19 "framework.nix" 26 20 "games.nix" 27 21 "graphene.nix" 28 - "greeter.nix" 29 22 "jetbrain.nix" 30 23 "network.nix" 31 24 "nantarena.nix" 32 25 "raspberry.nix" 33 - "terminal.nix" 34 26 ]); 35 27 36 28 # Bootloader ··· 52 44 }; 53 45 54 46 services.fprintd.enable = lib.mkForce false; 55 - 56 - networking.hostName = "fantomitechno-laptop"; 57 47 58 48 console.keyMap = "us"; 59 49
-11
hosts/msi/default.nix
··· 9 9 ../computer.nix 10 10 ] 11 11 ++ builtins.map (i: ../../modules/${i}) ([ 12 - "cli-apps" 13 - "desktop-apps" 14 - "fastfetch" 15 - "git" 16 12 "niri-de" 17 - "wallpapers" 18 13 "battery-notify.nix" 19 - "communication.nix" 20 14 "customisation.nix" 21 15 "games.nix" 22 - "greeter.nix" 23 - "network.nix" 24 - "terminal.nix" 25 16 ]); 26 17 27 18 # Bootloader ··· 37 28 layout = "fr"; 38 29 variant = ""; 39 30 }; 40 - 41 - networking.hostName = "fantomitechno-msi"; 42 31 43 32 # Configure console keymap 44 33 console.keyMap = "fr";