mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
fix: add back CI module dependent functionality to CI
This commit is contained in:
parent
c5e8103b6b
commit
9d219f6d63
12 changed files with 226 additions and 25 deletions
29
systems/fullhome.nix
Normal file
29
systems/fullhome.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
_: let
|
||||
hostConfig = {
|
||||
lib,
|
||||
tree,
|
||||
modulesPath,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.modules) mkDefault;
|
||||
in {
|
||||
imports =
|
||||
with tree.home.profiles; [
|
||||
common
|
||||
];
|
||||
home-manager.users.kat = {
|
||||
imports = with tree.home.profiles; [
|
||||
devops
|
||||
graphical
|
||||
neovim
|
||||
shell
|
||||
];
|
||||
};
|
||||
};
|
||||
in {
|
||||
arch = "x86_64";
|
||||
type = "Home";
|
||||
modules = [
|
||||
hostConfig
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue