test user option in root

This commit is contained in:
Bryan Ramos 2024-01-27 14:29:09 -05:00
parent 09fdfeed11
commit 1ad971d909
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
3 changed files with 7 additions and 5 deletions

View file

@ -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;

View file

@ -1 +1 @@
{ imports = [ ./hardware.nix ./system.nix ./user ]; } { imports = [ ./hardware.nix ./system.nix ../../user ]; }