nixfiles/presets/nixos/desktopBase.nix

39 lines
576 B
Nix
Raw Normal View History

{tree, ...}: {
2024-07-24 14:13:59 +01:00
imports = with tree.profiles.nixos; [
wifiHardware
2024-07-24 14:13:59 +01:00
sound.base
sound.pipewire
gui.base
2024-07-24 14:13:59 +01:00
mullvad
];
home-manager.users.chaos = {
2024-07-24 14:13:59 +01:00
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
];
};
}