Home-manager refactoring
This commit is contained in:
parent
c6b6816e47
commit
a783855706
5 changed files with 7 additions and 11 deletions
7
users/modules/podman/default.nix
Normal file
7
users/modules/podman/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./podman.nix
|
||||||
|
./containers.nix
|
||||||
|
./podman-dnsname.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,11 +0,0 @@
|
||||||
{ hmUsers, ... }:
|
|
||||||
{
|
|
||||||
home-manager.users = { inherit (hmUsers) nixos; };
|
|
||||||
|
|
||||||
users.users.nixos = {
|
|
||||||
password = "nixos";
|
|
||||||
description = "default";
|
|
||||||
isNormalUser = true;
|
|
||||||
extraGroups = [ "wheel" ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue