Evie Litherland-Smith
6ed405d7e2
commit68df6945a2
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:44:52 2024 +0100 Remove gnome-themes-extra and adwaita-qt commitfa7baa7812
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:37:45 2024 +0100 Export more rc2 settings for Vanguard commit4a101ee77d
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:27:46 2024 +0100 Set pinentry package to Qt variant when using plasma6 Add extra theme/icon packages to installed packages whilst configuring commit923adabb28
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:23:48 2024 +0100 Add rc2 export for Vanguard as well Remove some sway config from Vanguard.nix Remove home-manager kdeconnect service, incompatible with system/plasma6 enabled service Install pinentry-all by default to ensure compatibility commitdfc1ac3f74
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 07:35:31 2024 +0100 Add plasma6 export using rc2nix commiteb8bb86c17
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Sun Jun 16 20:44:38 2024 +0100 Disable/remove more options not needed for plasma6 commit51171ddb06
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Sun Jun 16 19:31:15 2024 +0100 Re-enable alacritty decorations, disable translucency for alacritty and emacs commit99364c041b
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Sun Jun 16 12:42:26 2024 +0100 Disable sway and related modules
22 lines
574 B
Nix
22 lines
574 B
Nix
{config, ...}: {
|
|
imports = [
|
|
# Programs
|
|
../programs/desktop/default.nix
|
|
../programs/shell/default.nix
|
|
../programs/emacs/default.nix
|
|
../programs/firefox/default.nix
|
|
../programs/obs/default.nix
|
|
# Services
|
|
../services/email/work.nix # TODO combine again at some point
|
|
../services/password-store/default.nix
|
|
# Additional Scripts
|
|
../scripts/default.nix
|
|
];
|
|
programs.home-manager.enable = true;
|
|
nixpkgs.config.allowUnfree = true;
|
|
home = {
|
|
homeDirectory = "/home/${config.home.username}";
|
|
stateVersion = "23.05";
|
|
};
|
|
}
|