Add new puter, Midas
This commit is contained in:
parent
998fc526e7
commit
1c10a598e9
8 changed files with 194 additions and 0 deletions
4
hosts/midas/users/default.nix
Normal file
4
hosts/midas/users/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [ ./main ];
|
||||
}
|
11
hosts/midas/users/main/default.nix
Normal file
11
hosts/midas/users/main/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
home-manager.users."${config.sysusers.main}" = {
|
||||
home = {
|
||||
desktop.enable = true;
|
||||
gaming.enable = true;
|
||||
production.enable = true;
|
||||
stateVersion = lib.mkForce config.system.stateVersion;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue