nixfiles/presets/nixos/desktop-base.nix

40 lines
741 B
Nix

{tree, ...}: {
imports = with tree; [
profiles.sound.pipewire
profiles.gui.base
profiles.firewall-allow.aria2c
profiles.firewall-allow.soulseek
profiles.mullvad
];
boot.plymouth.enable = true;
home-manager.users.chaos = {
imports = with tree; [
home.gui.base
home.apps.file-roller
home.apps.nautilus
home.apps.pavucontrol
home.apps.mpv
home.apps.firefox
home.apps.telegram
home.apps.quassel
home.apps.session
home.apps.toot-cli
home.apps.obsidian
home.apps.strawberry
home.apps.nicotine-plus
home.apps.musicutil
home.apps.mullvad
home.apps.aria2
home.apps.rclone
home.apps.restic
];
};
}