mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
37 lines
664 B
Nix
37 lines
664 B
Nix
{
|
|
hostname,
|
|
lib,
|
|
username,
|
|
...
|
|
}: let
|
|
inherit (import ../hosts/${hostname}/env.nix) StateVersion;
|
|
ls = lib.filesystem.listFilesRecursive;
|
|
in {
|
|
imports =
|
|
ls ./cli
|
|
++ ls ./gui
|
|
++ ls ./tui
|
|
++ ls ./wayland
|
|
++ [ ./nixvim ];
|
|
|
|
home = {
|
|
file = {
|
|
".config" = {
|
|
force = true;
|
|
recursive = true;
|
|
source = ../dotfiles/.config;
|
|
};
|
|
".local" = {
|
|
force = true;
|
|
recursive = true;
|
|
source = ../dotfiles/.local;
|
|
};
|
|
};
|
|
homeDirectory = "/home/${username}";
|
|
stateVersion = StateVersion;
|
|
username = "${username}";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|