25 lines
403 B
Nix
25 lines
403 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
./locales.nix
|
|
./nix.nix
|
|
./nix-ld.nix
|
|
];
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.extraSpecialArgs = {
|
|
inherit inputs outputs;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
cowsay
|
|
lolcat
|
|
];
|
|
|
|
system.stateVersion = "24.11"; # Did you read the comment?
|
|
}
|