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
|
||||
];
|
||||
};
|
||||
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../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
|
||||
];
|
||||
};
|
||||
|
||||
}
|
55
profiles/graphical.nix
Normal file
55
profiles/graphical.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../configurations/adb.nix
|
||||
../configurations/docker.nix
|
||||
../configurations/dropbox.nix
|
||||
../configurations/firefox.nix
|
||||
../configurations/fonts.nix
|
||||
../configurations/gnupg.nix
|
||||
../configurations/i3.nix
|
||||
../configurations/joplin.nix
|
||||
../configurations/kernel.nix
|
||||
../configurations/kitty.nix
|
||||
../configurations/mounts.nix
|
||||
../configurations/networkmanager.nix
|
||||
../configurations/sound.nix
|
||||
../configurations/sway.nix
|
||||
../configurations/syncthing.nix
|
||||
../configurations/teams.nix
|
||||
../configurations/themes.nix
|
||||
../configurations/thunderbird.nix
|
||||
../configurations/xdg-dirs.nix
|
||||
];
|
||||
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
chromium
|
||||
citrix_workspace
|
||||
deluge
|
||||
google-chrome
|
||||
hledger
|
||||
libreoffice
|
||||
mpv
|
||||
mumble
|
||||
okular
|
||||
pavucontrol
|
||||
ranger
|
||||
slurp
|
||||
sshfs
|
||||
wf-recorder
|
||||
wl-clipboard
|
||||
zeroad
|
||||
];
|
||||
programs.zsh.loginExtra = ''
|
||||
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty1" ]]; then
|
||||
exec sway
|
||||
fi
|
||||
|
||||
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty2" ]]; then
|
||||
exec startx
|
||||
fi
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -1,55 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../configurations/adb.nix
|
||||
../../configurations/docker.nix
|
||||
../../configurations/dropbox.nix
|
||||
../../configurations/firefox.nix
|
||||
../../configurations/fonts.nix
|
||||
../../configurations/gnupg.nix
|
||||
../../configurations/i3.nix
|
||||
../../configurations/joplin.nix
|
||||
../../configurations/kernel.nix
|
||||
../../configurations/kitty.nix
|
||||
../../configurations/mounts.nix
|
||||
../../configurations/networkmanager.nix
|
||||
../../configurations/sound.nix
|
||||
../../configurations/sway.nix
|
||||
../../configurations/syncthing.nix
|
||||
../../configurations/teams.nix
|
||||
../../configurations/themes.nix
|
||||
../../configurations/thunderbird.nix
|
||||
../../configurations/xdg-dirs.nix
|
||||
];
|
||||
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
chromium
|
||||
citrix_workspace
|
||||
deluge
|
||||
google-chrome
|
||||
hledger
|
||||
libreoffice
|
||||
mpv
|
||||
mumble
|
||||
okular
|
||||
pavucontrol
|
||||
ranger
|
||||
slurp
|
||||
sshfs
|
||||
wf-recorder
|
||||
wl-clipboard
|
||||
zeroad
|
||||
];
|
||||
programs.zsh.loginExtra = ''
|
||||
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty1" ]]; then
|
||||
exec sway
|
||||
fi
|
||||
|
||||
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty2" ]]; then
|
||||
exec startx
|
||||
fi
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue