Bump to nixos-23.11

This commit is contained in:
Dave Gallant
2023-12-05 23:41:24 -05:00
parent 5e48acfd67
commit 4d3e85b664
7 changed files with 28 additions and 31 deletions

34
flake.lock generated
View File

@@ -27,16 +27,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1700392168, "lastModified": 1700814205,
"narHash": "sha256-v5LprEFx3u4+1vmds9K0/i7sHjT0IYGs7u9v54iz/OA=", "narHash": "sha256-lWqDPKHRbQfi+zNIivf031BUeyciVOtwCwTjyrhDB5g=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "28535c3a34d79071f2ccb68671971ce0c0984d7e", "rev": "aeb2232d7a32530d3448318790534d196bf9427a",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-23.05", "ref": "release-23.11",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
@@ -46,11 +46,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1699785596, "lastModified": 1701153607,
"narHash": "sha256-njXqFmAEju1qZFePg6E3sca4xVp3P3T/Dm+D+be1fQM=", "narHash": "sha256-h+odOVyiGmEERMECoFOj5P7FPiMR8IPRzroFA4sKivg=",
"owner": "Mic92", "owner": "Mic92",
"repo": "nix-ld", "repo": "nix-ld",
"rev": "35ba5d7e8e6f838121a422e25ca38a40c41b8636", "rev": "bf5aa84a713c31d95b4307e442e966d6c7fd7ae7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -61,11 +61,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1701020860, "lastModified": 1701656485,
"narHash": "sha256-NwnRn04C8s+hH+KdVtGmVB1FFNIG7DtPJmQSCBDaET4=", "narHash": "sha256-xDFormrGCKKGqngHa2Bz1GTeKlFMMjLnHhTDRdMJ1hs=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "b006ec52fce23b1d57f6ab4a42d7400732e9a0a2", "rev": "fa194fc484fd7270ab324bb985593f71102e84d1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -91,11 +91,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1700856099, "lastModified": 1701693815,
"narHash": "sha256-RnEA7iJ36Ay9jI0WwP+/y4zjEhmeN6Cjs9VOFBH7eVQ=", "narHash": "sha256-7BkrXykVWfkn6+c1EhFA3ko4MLi3gVG0p9G96PNnKTM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0bd59c54ef06bc34eca01e37d689f5e46b3fe2f1", "rev": "09ec6a0881e1a36c29d67497693a67a16f4da573",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -107,16 +107,16 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1700989516, "lastModified": 1701539137,
"narHash": "sha256-oKbmPa2wpTHh9XB3+zIx97uMZGNnp97GPliKKG2/plo=", "narHash": "sha256-nVO/5QYpf1GwjvtpXhyxx5M3U/WN0MwBro4Lsk+9mL0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d2e4de209881b38392933fabf303cde3454b0b4c", "rev": "933d7dc155096e7575d207be6fb7792bc9f34f6d",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-23.05", "ref": "nixos-23.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

@@ -2,10 +2,10 @@
description = "nixos and macos configurations"; description = "nixos and macos configurations";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
home-manager.url = "github:nix-community/home-manager/release-23.05"; home-manager.url = "github:nix-community/home-manager/release-23.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-ld.url = "github:Mic92/nix-ld"; nix-ld.url = "github:Mic92/nix-ld";

View File

@@ -16,7 +16,7 @@
}; };
inherit (pkgs) stdenv; inherit (pkgs) stdenv;
in { in {
home.stateVersion = "23.05"; home.stateVersion = "23.11";
services = { services = {
gpg-agent = { gpg-agent = {
@@ -139,7 +139,7 @@ in {
enable = true; enable = true;
enableAutosuggestions = true; enableAutosuggestions = true;
enableCompletion = true; enableCompletion = true;
enableSyntaxHighlighting = true; syntaxHighlighting.enable = true;
history.size = 1000000; history.size = 1000000;
localVariables = { localVariables = {
@@ -211,13 +211,13 @@ in {
k = "kubecolor"; k = "kubecolor";
kcx = "kubectx"; kcx = "kubectx";
kns = "kubens"; kns = "kubens";
l = "exa -la --git --group-directories-first"; l = "eza -la --git --group-directories-first";
m = "make"; m = "make";
pia = "sudo openvpn --config ~/pia/$(find ~/pia -execdir basename {} .ovpn ';' -iname \"*.ovpn\" -type f | fzf --exact).ovpn --auth-user-pass ~/pia/pass"; pia = "sudo openvpn --config ~/pia/$(find ~/pia -execdir basename {} .ovpn ';' -iname \"*.ovpn\" -type f | fzf --exact).ovpn --auth-user-pass ~/pia/pass";
ps = "procs"; ps = "procs";
t = "tmux-sessionizer"; t = "tmux-sessionizer";
tf = "terraform"; tf = "terraform";
tree = "exa --tree"; tree = "eza --tree";
v = "nvim"; v = "nvim";
nix-install = "nix-env -iA"; nix-install = "nix-env -iA";
brew-x86 = "arch -x86_64 /usr/local/homebrew/bin/brew"; brew-x86 = "arch -x86_64 /usr/local/homebrew/bin/brew";

View File

@@ -1,5 +1,5 @@
{pkgs, ...}: { {pkgs, ...}: {
fonts.fonts = with pkgs; [ fonts.packages = with pkgs; [
dejavu_fonts dejavu_fonts
fira-code fira-code
fira-code-symbols fira-code-symbols

View File

@@ -4,7 +4,7 @@
system = { system = {
autoUpgrade.enable = true; autoUpgrade.enable = true;
stateVersion = "23.05"; stateVersion = "23.11";
}; };
nix = { nix = {
@@ -70,7 +70,7 @@
}; };
}; };
gnome.gnome-keyring.enable = true; gnome.gnome-keyring.enable = true;
mullvad-vpn.enable = true; mullvad-vpn.enable = false;
printing.enable = true; printing.enable = true;
resolved.enable = true; resolved.enable = true;
xserver = { xserver = {

View File

@@ -26,7 +26,7 @@ in {
# modern cli # modern cli
bat bat
exa eza
fd fd
unstable.github-cli unstable.github-cli
progress progress
@@ -34,7 +34,6 @@ in {
hadolint hadolint
nodePackages.eslint nodePackages.eslint
oha oha
postman
pre-commit pre-commit
ripgrep ripgrep
yq-go yq-go
@@ -46,7 +45,6 @@ in {
# containers # containers
krew krew
kube-score
kubecolor kubecolor
kubectl kubectl
kubectx kubectx

View File

@@ -55,12 +55,11 @@ in {
qemu qemu
rustup rustup
ryujinx ryujinx
steam-tui
strace strace
tailscale
traceroute traceroute
unstable.obsidian unstable.obsidian
unstable.signal-desktop unstable.signal-desktop
unstable.tailscale
unstable.unityhub unstable.unityhub
unstable.yuzu unstable.yuzu
unstable.zoom-us unstable.zoom-us