Create a desktop.linux profile

This commit is contained in:
monologiq 2025-12-24 12:08:37 +01:00
parent 6ec28c4ddc
commit 339a1d6853
2 changed files with 8 additions and 7 deletions

View file

@ -17,6 +17,7 @@ in
./persephone/hardware.nix ./persephone/hardware.nix
./persephone/networking.nix ./persephone/networking.nix
../profiles/minimal.nix ../profiles/minimal.nix
../profiles/desktop.linux.nix
]; ];
nixpkgs.config.allowUnfreePredicate = nixpkgs.config.allowUnfreePredicate =
@ -108,7 +109,6 @@ in
libva-utils libva-utils
vdpauinfo vdpauinfo
wget
adwaita-icon-theme adwaita-icon-theme
gsettings-desktop-schemas gsettings-desktop-schemas
@ -223,15 +223,9 @@ in
trusted-public-keys = [ "cache.nixos-cuda.org:74DUi4Ye579gUqzH4ziL9IyiJBlDpMRn9MBN8oNan9M=" ]; trusted-public-keys = [ "cache.nixos-cuda.org:74DUi4Ye579gUqzH4ziL9IyiJBlDpMRn9MBN8oNan9M=" ];
}; };
# Enable required services for Wayland
security.polkit.enable = true;
programs.dconf.enable = true;
programs._1password.enable = true; programs._1password.enable = true;
programs._1password-gui = { programs._1password-gui = {
enable = true; enable = true;
# Certain features, including CLI integration and system authentication support,
# require enabling PolKit integration on some desktop environments (e.g. Plasma).
polkitPolicyOwners = [ "pml" ]; polkitPolicyOwners = [ "pml" ];
}; };
@ -239,6 +233,7 @@ in
"1password/custom_allowed_browsers" = { "1password/custom_allowed_browsers" = {
text = '' text = ''
firefox firefox
brave
''; '';
mode = "0755"; mode = "0755";
}; };

View file

@ -0,0 +1,6 @@
{ pkgs, ... }:
{
programs.dconf.enable = true;
security.polkit.enable = true;
}