30 lines
437 B
Nix
Executable file
30 lines
437 B
Nix
Executable file
{ inputs
|
|
, pkgs
|
|
, ...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./configuration
|
|
];
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
username = "kurisu";
|
|
homeDirectory = "/home/kurisu";
|
|
|
|
# !!! DO NOT TOUCH !!!
|
|
stateVersion = "26.05";
|
|
};
|
|
|
|
# Enable essential programs.
|
|
programs.home-manager.enable = true;
|
|
|
|
# Nicely reload user system units when changed.
|
|
systemd.user.startServices = "sd-switch";
|
|
}
|