35 lines
777 B
Nix
35 lines
777 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../modules/zfs.nix
|
|
../configurations/direnv.nix
|
|
../configurations/git.nix
|
|
../configurations/gnupg.nix
|
|
../configurations/hledger.nix
|
|
../configurations/locale.nix
|
|
../configurations/mail.nix
|
|
../configurations/neovim.nix
|
|
../configurations/nix-index.nix
|
|
../configurations/nix-store.nix
|
|
../configurations/pass.nix
|
|
../configurations/ssh.nix
|
|
../configurations/tmux.nix
|
|
../configurations/users.nix
|
|
../configurations/zsh.nix
|
|
];
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.users.charlotte = { pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
htop
|
|
moreutils
|
|
ncdu
|
|
pandoc
|
|
ripgrep
|
|
texlive.combined.scheme-small
|
|
unzip
|
|
youtube-dl
|
|
];
|
|
};
|
|
}
|