diff options
| author | spl3g <spleefer6@yandex.ru> | 2024-07-24 17:14:14 +0500 |
|---|---|---|
| committer | spl3g <spleefer6@yandex.ru> | 2025-05-01 14:58:56 +0300 |
| commit | 4ed188828c9097e219926bbf71817c24f05a44e4 (patch) | |
| tree | 2c607b86ad6b0c876be5ce882b2ab190f7e6d35f /nixos/pc | |
| parent | 090c4e2b7a4e4c719e20be9803c66cec0ad724cf (diff) | |
add command option to greetd
Diffstat (limited to 'nixos/pc')
| -rw-r--r-- | nixos/pc/configuration.nix | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/nixos/pc/configuration.nix b/nixos/pc/configuration.nix index 5d15f41..f77564f 100644 --- a/nixos/pc/configuration.nix +++ b/nixos/pc/configuration.nix @@ -1,8 +1,9 @@ -{ inputs, outputs, lib, config, pkgs, ... }: { +{ pkgs, ... }: { imports = [ ../general.nix ./hardware-configuration.nix ../nixosModules/printing.nix + ../nixosModules/greetd.nix ]; time.timeZone = "Asia/Yekaterinburg"; @@ -10,12 +11,21 @@ printing.enable = true; + programs.adb.enable = true; + services.udev.packages = [ + pkgs.android-udev-rules + ]; + services.xserver = { enable = true; displayManager.startx.enable = true; }; - + services.openssh.enable = true; + + greetd.command = "startx"; + + system.stateVersion = "24.11"; } |
