nixos-config/users.nix

35 lines
881 B
Nix
Raw Normal View History

2024-03-04 00:17:28 +00:00
{ config, lib, pkgs, ...};
{
imports =
[ # Include the results of the hardware scan.
<home-manager/nixos>
];
users.users.sky.isNormalUser = true;
users.users.ku.isNormalUser = true;
users.users.nub.isNormalUser = true;
users.users.docker.isNormalUser = true;
2024-03-04 00:17:28 +00:00
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";
};
2024-03-04 00:17:28 +00:00
}