22 lines
328 B
Nix
22 lines
328 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
nixpkgs = {
|
|
config.allowUnfree = false;
|
|
};
|
|
|
|
home = {
|
|
username = "ae";
|
|
homeDirectory = "/home/ae";
|
|
};
|
|
|
|
# Nicely reload system units when changing configs
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
home.stateVersion = "24.11"; # DO NOT MODIFY
|
|
}
|