Reorganize profiles
This commit is contained in:
parent
8f69deca1e
commit
89bf75a91e
7 changed files with 93 additions and 94 deletions
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
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue