mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
cat
This commit is contained in:
parent
730d251731
commit
53b69ec2ef
1 changed files with 9 additions and 2 deletions
|
|
@ -1,8 +1,8 @@
|
|||
{ pkgs, config, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
imports = [ (import ./modules/default.nix) ];
|
||||
imports = [ (import ./modules/default.nix { inherit pkgs; }) ];
|
||||
home.stateVersion = "22.11";
|
||||
|
||||
home.username = "bryan";
|
||||
|
|
@ -23,4 +23,11 @@
|
|||
security.enable = true;
|
||||
corn.enable = true;
|
||||
};
|
||||
|
||||
homeManagerConfig = {
|
||||
homeManagerPath = "${pkgs.home-manager}/bin/home-manager";
|
||||
extraConfig = ''
|
||||
users.bryan = import ./homeConfig/home.nix { inherit config; };
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue