Create a desktop.linux profile
This commit is contained in:
parent
6ec28c4ddc
commit
339a1d6853
2 changed files with 8 additions and 7 deletions
|
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
6
profiles/desktop.linux.nix
Normal file
6
profiles/desktop.linux.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
security.polkit.enable = true;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue