add sj-bm-hostkey0, bump steveej-t14, rework NIX_PATH and zsh

This commit is contained in:
steveej 2023-11-23 17:14:15 +01:00
parent ceda614fcd
commit 47173396fe
13 changed files with 156 additions and 575 deletions

View file

@ -31,10 +31,22 @@ in {
users.commonUsers = {
enable = true;
enableNonRoot = true;
# rootPasswordFile = config.sops.secrets.passwords-root.path;
};
}
];
nix.nixPath = [
"nixpkgs=${pkgs.path}"
];
nix.registry = {
nixpkgs.to = {
type = "path";
path = pkgs.path;
};
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
boot = {
kernel = {
@ -104,7 +116,7 @@ in {
};
};
system.stateVersion = "23.05";
system.stateVersion = "23.11";
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.initrd.includeDefaultModules = true;
@ -119,4 +131,17 @@ in {
environment.systemPackages = [
pkgs.hdparm
];
# home-manager.users.steveej = _: {
# imports = [
# ../../../home-manager/configuration/text-minimal.nix
# ];
# home.sessionVariables = {
# };
# home.packages = with pkgs; [
# ];
# };
}