Initial commit
This commit is contained in:
commit
e886de58af
23 changed files with 926 additions and 0 deletions
16
modules/home-manager.nix
Normal file
16
modules/home-manager.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ config, pkgs, lib, inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
];
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
# Import the home-manager config for cobray user
|
||||
users.cobray = import ../home-manager/cobray.nix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue