This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/home.nix
Evie Litherland-Smith 10db59de2a Initial add of copied files
Probably not in a working state at the moment, but home-manager will
build. Needs proper configuring to be used
2024-05-11 13:55:23 +01:00

21 lines
408 B
Nix

{
lib,
config,
pkgs,
tt-schemes,
catppuccinVariant,
...
}: {
imports = [
./home/default.nix
/etc/nixos/hosts/Northstar/home.nix
];
programs.home-manager.enable = true;
scheme = "${tt-schemes}/base16/catppuccin-${lib.strings.toLower catppuccinVariant}.yaml";
home = rec {
username = "pixelifytica";
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
}