feat(nixos): module: +user.yukkop
This commit is contained in:
15
nixos/module/hectic/user/yukkop/default.nix
Normal file
15
nixos/module/hectic/user/yukkop/default.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
self,
|
||||
inputs,
|
||||
flake,
|
||||
system ? "x86_64-linux",
|
||||
...
|
||||
}: let
|
||||
# Use folder name as name of this system
|
||||
name = builtins.baseNameOf ./.;
|
||||
in inputs.home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = self.legacyPackages."${system}";
|
||||
modules = [
|
||||
(import ./${name}.nix { inherit flake self inputs; })
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user