flake/homes/cry/default.nix

21 lines
371 B
Nix

{...}: {
nixpkgs = {
config.allowUnfree = false;
};
imports = [
../modules/fish.nix
../modules/bat.nix
../modules/btop.nix
];
home = {
username = "cry";
homeDirectory = "/home/cry";
};
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
home.stateVersion = "24.11"; # DO NOT MODIFY
}