the configuration for all my nixos machines (hacky! bad! ugly!)
0
fork

Configure Feed

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

at main 30 lines 571 B view raw
1{ pkgs, lib, ...}: 2{ 3 home.stateVersion = "25.05"; # Please read the comment before changing. 4 imports = [ ./profiles ]; 5 manual.manpages.enable = true; 6 home = { 7 packages = with pkgs; [ 8 rsync 9 ripgrep 10 jujutsu 11 ]; 12 file = { 13 14 }; 15 sessionVariables = { 16 17 }; 18 }; 19 programs.home-manager.enable = true; 20 programs.zsh.enable = true; 21 programs.atuin ={ 22 enable = true; 23 flags = [ "--disable-up-arrow" ]; 24 }; 25 programs.direnv = { 26 enable = true; 27 enableZshIntegration = true; 28 nix-direnv.enable = true; 29 }; 30}