Files
nixos/home/home.nix
T

40 lines
448 B
Nix
Raw Normal View History

2022-08-02 01:50:50 -05:00
name: { pkgs, lib, gui, ...}:
2022-04-18 11:38:06 -05:00
2022-04-29 10:58:31 -05:00
let
2022-08-02 01:50:50 -05:00
guiImports = if gui then
2022-04-29 10:58:31 -05:00
[ ./gui ] else [];
in {
2022-04-18 11:38:06 -05:00
imports = [
2022-04-29 10:58:31 -05:00
./modules
2022-05-27 13:53:02 -05:00
./ansible.nix
2022-04-18 11:38:06 -05:00
./bash.nix
2022-05-04 13:52:38 -05:00
./direnv.nix
2022-04-18 11:38:06 -05:00
./git.nix
2022-04-18 14:01:00 -05:00
./ssh.nix
2022-04-29 10:58:31 -05:00
./vim.nix
./xonsh.nix
] ++ guiImports;
2022-04-18 11:38:06 -05:00
2022-08-02 01:50:50 -05:00
home.stateVersion = "22.05";
2022-08-19 10:55:21 -05:00
home.packages = with pkgs; [
2022-09-05 23:11:01 -05:00
bitwarden-cli
2022-08-19 10:55:21 -05:00
cdrtools
2022-09-05 23:11:01 -05:00
diffutils
2022-08-19 10:55:21 -05:00
ffmpeg
2022-09-05 23:11:01 -05:00
findutils
git
gnupatch
2022-08-19 10:55:21 -05:00
hms
libtheora
2022-09-05 23:11:01 -05:00
nano
tmux
transcrypt
unzip
wget
2022-08-19 10:55:21 -05:00
x265
2022-09-05 23:11:01 -05:00
yamllint
2022-08-02 01:50:50 -05:00
];
2022-04-18 11:38:06 -05:00
}