b447282c7a
* feat: add test node and spin up podman/cockpit * dev hack * bug: disable wayland temporarily #52 * feat: add nfs mount to nas * chore: add nas to sshconf * derp * hax * fix: hax * feat: firefox and gnome tweaks * chore: tweak nautilus --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
39 lines
619 B
Nix
39 lines
619 B
Nix
{ inputs
|
|
, config
|
|
, lib
|
|
, ...
|
|
}: {
|
|
imports = [
|
|
./shell
|
|
./programs
|
|
./security
|
|
];
|
|
|
|
options.myHome.username = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "users username";
|
|
default = "truxnell";
|
|
};
|
|
options.myHome.homeDirectory = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "users homedir";
|
|
default = "truxnell";
|
|
};
|
|
|
|
# Home-manager defaults
|
|
config = {
|
|
home.stateVersion = "23.11";
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
git.enable = true;
|
|
};
|
|
|
|
xdg.enable = true;
|
|
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
}
|