nixfiles/presets/nixos/desktopBase.nix

46 lines
846 B
Nix
Raw Normal View History

{tree, ...}: {
imports = with tree; [
profiles.wifiHardware
profiles.sound.base
profiles.sound.pipewire
profiles.gui.base
2023-09-18 03:56:58 +01:00
profiles.firewallAllow.aria2c
profiles.firewallAllow.soulseek
profiles.mullvad
];
boot.plymouth.enable = true;
home-manager.users.chaos = {
imports = with tree; [
home.gui.base
2023-09-18 03:56:58 +01:00
home.apps.fileRoller
home.apps.nautilus
home.apps.pavucontrol
home.apps.mpv
2022-11-11 16:32:26 +00:00
home.apps.firefox
home.apps.telegram
home.apps.thunderbird
home.apps.quassel
home.apps.session
home.apps.toot-cli
home.apps.obsidian
2023-09-01 16:56:26 +01:00
home.apps.libreoffice
home.apps.strawberry
home.apps.nicotine-plus
2024-03-30 10:21:07 +00:00
home.apps.musicutil
home.apps.mullvad
home.apps.aria2
home.apps.rclone
home.apps.restic
];
};
}