remanaging home-manager
This commit is contained in:
parent
ba4461c6b4
commit
101c769f73
3 changed files with 11 additions and 6 deletions
|
|
@ -4,6 +4,7 @@
|
|||
imports = [
|
||||
./boot.nix
|
||||
./hardware.nix
|
||||
./home-manager.nix
|
||||
./impermanence.nix
|
||||
./nix.nix
|
||||
./packages.nix
|
||||
|
|
|
|||
10
hosts/desktops/common/home-manager.nix
Normal file
10
hosts/desktops/common/home-manager.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ inputs, config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
backupFileExtension = "bkp";
|
||||
users.user = import ../../../users/desktops/user.nix;
|
||||
};
|
||||
}
|
||||
|
|
@ -19,10 +19,4 @@
|
|||
"i2c"
|
||||
];
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.user = import ../../../users/desktops/user.nix;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue