Files
nixos/home/home.nix
T
2022-08-19 10:55:31 -05:00

29 lines
338 B
Nix

name: { pkgs, lib, gui, ...}:
let
guiImports = if gui then
[ ./gui ] else [];
in {
imports = [
./modules
./ansible.nix
./bash.nix
./direnv.nix
./git.nix
./ssh.nix
./vim.nix
./xonsh.nix
] ++ guiImports;
home.stateVersion = "22.05";
home.packages = with pkgs; [
cdrtools
ffmpeg
hms
libtheora
x265
];
}