mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -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;
|
||||
imports = [ (import ./modules) ];
|
||||
|
||||
imports = [ ./modules ../user ];
|
||||
|
||||
home.stateVersion = "22.11";
|
||||
|
||||
home.username = "bryan";
|
||||
home.homeDirectory = "/home/bryan";
|
||||
home.username = "${config.user.name}";
|
||||
home.homeDirectory = "/home/${config.user.name}";
|
||||
|
||||
modules = {
|
||||
gui.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue