diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-12-20 00:31:29 -0600 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-12-20 00:31:29 -0600 |
| commit | 929d4bdfb90da7d218633fea9f100c3ff11887d6 (patch) | |
| tree | b64a4290d8d8b8ee9ebe6d4d9bdf9d671700f802 /hosts/piframe/configuration.nix | |
| parent | 8174b1fd7f341f3d051d1b698faf10cc1865a3cb (diff) | |
| download | nixos-929d4bdfb90da7d218633fea9f100c3ff11887d6.tar.xz nixos-929d4bdfb90da7d218633fea9f100c3ff11887d6.zip | |
Diffstat (limited to 'hosts/piframe/configuration.nix')
| -rw-r--r-- | hosts/piframe/configuration.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/hosts/piframe/configuration.nix b/hosts/piframe/configuration.nix index 5195de1..a78313b 100644 --- a/hosts/piframe/configuration.nix +++ b/hosts/piframe/configuration.nix @@ -1,16 +1,16 @@ { config, lib, pkgs, ... }: { - # Use the extlinux boot loader. (NixOS wants to enable GRUB by default) - boot.loader.grub.enable = false; - # Enables the generation of /boot/extlinux/extlinux.conf - boot.loader.generic-extlinux-compatible.enable = true; - _archetypes = { - # Use headless profile + # Use headless and pi profiles profiles.headless = { enable = true; home.users.timmy.enable = true; home.users.piframe.enable = true; }; + profiles.pi = { + enable = true; + home.users.timmy.enable = true; + home.users.piframe.enable = true; + }; collections = { desktop.xserver.enable = true; }; @@ -36,7 +36,6 @@ # Enable piframe user users.users.piframe = { isNormalUser = true; - #extraGroups = [ "video" ]; }; # Configure automatic login with getty |
