aboutsummaryrefslogtreecommitdiff
path: root/nixos/pc
diff options
context:
space:
mode:
authorspl3g <spleefer6@yandex.ru>2024-08-26 22:51:21 +0500
committerspl3g <spleefer6@yandex.ru>2025-05-01 14:58:56 +0300
commit0c4d95b64c6a4577d17b875b90e210bec76020ba (patch)
treef000436e20ce92fb640feb2bf1ca4d4a25a62b7d /nixos/pc
parent723a75358ad361f675a4b4d5daa00e4ec05c944d (diff)
feat: add polkit and postgres
Diffstat (limited to 'nixos/pc')
-rw-r--r--nixos/pc/configuration.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/pc/configuration.nix b/nixos/pc/configuration.nix
index f77564f..e4cb669 100644
--- a/nixos/pc/configuration.nix
+++ b/nixos/pc/configuration.nix
@@ -20,8 +20,18 @@
enable = true;
displayManager.startx.enable = true;
};
+
+ services.postgresql = {
+ enable = true;
+ };
services.openssh.enable = true;
+ security.polkit = {
+ enable = true;
+ };
+ environment.systemPackages = with pkgs; [
+ lxqt.lxqt-policykit
+ ];
greetd.command = "startx";