nixfiles/presets/nixos/desktopBase.nix
2024-07-24 14:13:59 +01:00

39 lines
576 B
Nix

{tree, ...}: {
imports = with tree.profiles.nixos; [
wifiHardware
sound.base
sound.pipewire
gui.base
mullvad
];
home-manager.users.chaos = {
imports = with tree.profiles.home-manager; [
gui.base
apps.fileRoller
apps.nautilus
apps.pavucontrol
apps.mpv
apps.firefox
apps.telegram
apps.thunderbird
apps.toot-cli
apps.obsidian
apps.libreoffice
apps.nicotine-plus
apps.musicutil
apps.mullvad
apps.aria2
apps.rclone
apps.restic
];
};
}