Reorganize profiles
This commit is contained in:
parent
8f69deca1e
commit
89bf75a91e
7 changed files with 93 additions and 94 deletions
32
profiles/common.nix
Normal file
32
profiles/common.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
<home-manager/nixos>
|
||||
../modules/zfs.nix
|
||||
../overlays/default.nix
|
||||
../configurations/direnv.nix
|
||||
../configurations/git.nix
|
||||
../configurations/locale.nix
|
||||
../configurations/neovim.nix
|
||||
../configurations/nix-index.nix
|
||||
../configurations/nix-store.nix
|
||||
../configurations/ssh.nix
|
||||
../configurations/tmux.nix
|
||||
../configurations/users.nix
|
||||
../configurations/zsh.nix
|
||||
];
|
||||
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
htop
|
||||
moreutils
|
||||
ncdu
|
||||
pass
|
||||
ripgrep
|
||||
unzip
|
||||
youtube-dl
|
||||
];
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue