mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 15:01:57 +00:00
28 lines
550 B
Nix
28 lines
550 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./core/dotfiles.nix
|
|
./core/user.nix
|
|
./core/packages.nix
|
|
./core/programs.nix
|
|
inputs.hyprcursor-phinger.homeManagerModules.hyprcursor-phinger
|
|
];
|
|
|
|
nix = {
|
|
package = pkgs.nix;
|
|
settings.experimental-features = ["nix-command" "flakes"];
|
|
};
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
home.stateVersion = "23.11";
|
|
# Nicely reload system units when changing configs
|
|
systemd.user.startServices = "sd-switch";
|
|
}
|