home-manager workstation changes

This commit is contained in:
Bryan Ramos 2024-05-17 09:09:26 -04:00
parent ac69f1f36d
commit 121c811837
3 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1 @@
{ ... }: { imports = [ ./home.nix ]; }
{
imports = [
./home.nix
];
}

View file

@ -1,7 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = [ ../../../user ]; imports = [ ./user ];
home = { home = {
stateVersion = "23.11"; stateVersion = "23.11";
@ -48,5 +48,10 @@
}; };
}; };
}; };
home.file.".config/home-manager" = {
source = ../../../..;
recursive = true;
};
}; };
} }

View file

@ -0,0 +1 @@
../../../user/