mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
test user option in root
This commit is contained in:
parent
09fdfeed11
commit
1ad971d909
3 changed files with 7 additions and 5 deletions
|
|
@ -1,12 +1,14 @@
|
||||||
{ ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
imports = [ (import ./modules) ];
|
|
||||||
|
imports = [ ./modules ../user ];
|
||||||
|
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
|
||||||
home.username = "bryan";
|
home.username = "${config.user.name}";
|
||||||
home.homeDirectory = "/home/bryan";
|
home.homeDirectory = "/home/${config.user.name}";
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
gui.enable = true;
|
gui.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
{ imports = [ ./hardware.nix ./system.nix ./user ]; }
|
{ imports = [ ./hardware.nix ./system.nix ../../user ]; }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue