{ config, lib, pkgs, ...}; { imports = [ # Include the results of the hardware scan. ]; users.users.sky.isNormalUser = true; users.users.ku.isNormalUser = true; users.users.nub.isNormalUser = true; users.users.docker.isNormalUser = true; users.groups.wheel.members=["sky"]; users.extraUsers.podman.extraGroups = [ "podman" ]; home-manager.users.podman = { pkgs, ... }: { home.packages = [ ]; programs.bash.enable = true; home.file = { "arion-pkgs.nix" = { source = ; # TODO: figure out how to make this work with flakes }; "arion-compose.nix" = { source = ; # TODO: figure out how to make this work with flakes }; }; # The state version is required and should stay at the version you # originally installed. home.stateVersion = "23.11"; }; }