diff options
| author | Fuwn <[email protected]> | 2024-10-01 06:09:02 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-01 06:09:08 -0700 |
| commit | 63d15b50adcdf17ee2055eb22d06c1d03c6fecd9 (patch) | |
| tree | aed4120c4160729c3ebfb0100c567d9ee7c8199e /modules/pc/software | |
| parent | modules: move boot from desktop to pc (diff) | |
| download | nixos-config-63d15b50adcdf17ee2055eb22d06c1d03c6fecd9.tar.xz nixos-config-63d15b50adcdf17ee2055eb22d06c1d03c6fecd9.zip | |
modules: move remaining fina-specific configuration to pc and laptop
Diffstat (limited to 'modules/pc/software')
| -rw-r--r-- | modules/pc/software/default.nix | 1 | ||||
| -rw-r--r-- | modules/pc/software/programs.nix | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/modules/pc/software/default.nix b/modules/pc/software/default.nix index 6f21743..0f432d7 100644 --- a/modules/pc/software/default.nix +++ b/modules/pc/software/default.nix @@ -8,6 +8,7 @@ ./services ./encryption.nix ./input.nix + ./programs.nix ./shell.nix ./users.nix ]; diff --git a/modules/pc/software/programs.nix b/modules/pc/software/programs.nix new file mode 100644 index 0000000..2868d9a --- /dev/null +++ b/modules/pc/software/programs.nix @@ -0,0 +1,13 @@ +{ + programs = { + fish.enable = true; + mtr.enable = true; + dconf.enable = true; + ccache.enable = true; + fuse.userAllowOther = true; + + bash.interactiveShellInit = '' + export HISTFILE="$XDG_STATE_HOME/bash/history" + ''; + }; +} |