mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 18:19:09 +00:00
config: update default home-manager config
This commit is contained in:
parent
2622101910
commit
6d58d6a14e
@ -200,7 +200,7 @@
|
|||||||
# be used for sharing modules among home-manager users from NixOS
|
# be used for sharing modules among home-manager users from NixOS
|
||||||
# configurations with `nixpkgs.useGlobalPkgs` set to `true` so avoid
|
# configurations with `nixpkgs.useGlobalPkgs` set to `true` so avoid
|
||||||
# setting nixpkgs-related options here.
|
# setting nixpkgs-related options here.
|
||||||
userSharedConfig = { pkgs, config, ... }: {
|
userSharedConfig = { pkgs, config, lib, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nur.hmModules.nur
|
inputs.nur.hmModules.nur
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
@ -239,12 +239,15 @@
|
|||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
manual = {
|
manual = lib.mkDefault {
|
||||||
html.enable = true;
|
html.enable = true;
|
||||||
json.enable = true;
|
json.enable = true;
|
||||||
manpages.enable = true;
|
manpages.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.stateVersion = lib.mkDefault "23.11";
|
||||||
|
};
|
||||||
|
|
||||||
nixSettingsSharedConfig = { config, lib, pkgs, ... }: {
|
nixSettingsSharedConfig = { config, lib, pkgs, ... }: {
|
||||||
# I want to capture the usual flakes to its exact version so we're
|
# I want to capture the usual flakes to its exact version so we're
|
||||||
# making them available to our system. This will also prevent the
|
# making them available to our system. This will also prevent the
|
||||||
|
Loading…
Reference in New Issue
Block a user