Skip to content

Commit f7249df

Browse files
committed
update to nixos-23.05
1 parent 3665954 commit f7249df

File tree

9 files changed

+48
-60
lines changed

9 files changed

+48
-60
lines changed

flake.lock

Lines changed: 8 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
description = "Disassembler Network";
33
inputs = {
44
flake-utils.url = "github:numtide/flake-utils";
5-
nix.url = "github:NixOS/nix/2.15.0";
6-
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
5+
nix.url = "github:NixOS/nix/2.14.1";
6+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
77
#nixpkgs-2111.follows = "cardano-node/haskellNix/nixpkgs-2111";
88
#nixpkgs-2105.follows = "cardano-node/haskellNix/nixpkgs-2105";
99
cardano-node.url = "github:input-output-hk/cardano-node/cardano-node-service-ipv6";

modules/profiles/xapps.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ in
2121
xtrlock-pam
2222
rxvt_unicode-with-plugins
2323
xsel
24-
keepassx-community
2524
virtmanager
2625
xclip
2726
gnome3.gnome_session

modules/roles/base.nix

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ with lib;
1212
users.mutableUsers = mkDefault true;
1313

1414
# clean tmp on boot
15-
boot.cleanTmpDir = mkDefault true;
15+
boot.tmp.cleanOnBoot = mkDefault true;
1616

1717
programs = {
1818
bash.enableCompletion = mkDefault true;
@@ -23,19 +23,17 @@ with lib;
2323

2424
# sane dnsmasq defaults
2525
services = {
26-
dnsmasq.extraConfig = ''
27-
strict-order # obey order of dns servers
28-
'';
29-
3026
# sane journald defaults
3127
journald.extraConfig = ''
3228
SystemMaxUse=256M
3329
'';
3430
locate.enable = true;
3531
openssh = {
3632
enable = true;
37-
passwordAuthentication = false;
38-
permitRootLogin = "without-password";
33+
settings = {
34+
PasswordAuthentication = false;
35+
PermitRootLogin = "without-password";
36+
};
3937
};
4038
};
4139

nixos/irkutsk/configuration.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ in
238238
rxvt_unicode-with-plugins
239239
termite
240240
xsel
241-
keepassx2
242241
tcpdump
243242
inetutils
244243
p11-kit

nixos/pskov/configuration.nix

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ in
4242
boot.zfs.enableUnstable = true;
4343

4444
boot.supportedFilesystems = [ "exfat" "zfs" ];
45-
boot.cleanTmpDir = true;
45+
boot.tmp.cleanOnBoot = true;
4646
boot.zfs.devNodes = "/dev";
4747

4848
boot.extraModprobeConfig = ''
@@ -222,7 +222,7 @@ in
222222
strace
223223
mplayer
224224
gpgme.dev
225-
yubioath-desktop
225+
yubioath-flutter
226226
yubikey-manager
227227
pinentry-gtk2
228228
bat
@@ -255,7 +255,6 @@ in
255255
termite
256256
wezterm
257257
xsel
258-
keepassx2
259258
tcpdump
260259
inetutils
261260
p11-kit
@@ -513,22 +512,24 @@ in
513512
};
514513
dnsmasq = {
515514
enable = true;
516-
extraConfig = ''
517-
address=/portal.wedlake.lan/10.40.33.1
518-
address=/crate.wedlake.lan/10.40.33.20
519-
address=/hydra.wedlake.lan/10.40.33.20
520-
address=/unifi.wedlake.lan/10.40.33.20
521-
address=/server.lan.bower-law.com/192.168.0.254
522-
server=/wedlake.lan/10.40.33.1
523-
server=/lan.centrallakerealty.com/10.37.3.2
524-
server=/lan.bower-law.com/192.168.0.254
525-
server=/bower.local/192.168.0.254
526-
server=/lan.centrallakerealty.com/10.37.3.2
527-
'';
528-
servers = [
529-
"8.8.4.4"
530-
"8.8.8.8"
531-
];
515+
settings = {
516+
address = [
517+
"/portal.wedlake.lan/10.40.33.1"
518+
"/crate.wedlake.lan/10.40.33.20"
519+
"/hydra.wedlake.lan/10.40.33.20"
520+
"/unifi.wedlake.lan/10.40.33.20"
521+
"/server.lan.bower-law.com/192.168.0.254"
522+
];
523+
server = [
524+
"8.8.4.4"
525+
"8.8.8.8"
526+
"/wedlake.lan/10.40.33.1"
527+
"/lan.centrallakerealty.com/10.37.3.2"
528+
"/lan.bower-law.com/192.168.0.254"
529+
"/bower.local/192.168.0.254"
530+
"/lan.centrallakerealty.com/10.37.3.2"
531+
];
532+
};
532533
resolveLocalQueries = false;
533534
};
534535

@@ -598,7 +599,7 @@ in
598599
virtualisation.podman.enable = true;
599600
virtualisation.podman.dockerCompat = true;
600601
virtualisation.podman.dockerSocket.enable = true;
601-
virtualisation.podman.defaultNetwork.dnsname.enable = true;
602+
virtualisation.podman.defaultNetwork.settings.dnsenabled = true;
602603
systemd.services.podman.path = [pkgs.zfs];
603604
systemd.services.podman.serviceConfig.ExecStart = lib.mkForce [
604605
""
@@ -692,4 +693,5 @@ in
692693
};
693694

694695
systemd.user.services = { };
696+
system.stateVersion = "23.05";
695697
}

nixos/sarov/configuration.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,11 @@
8383
#
8484
services.cardano-node = {
8585
enable = true;
86+
useNewTopology = true;
8687
environment = "mainnet";
8788
package = cardano-node.packages.x86_64-linux.cardano-node;
88-
systemdSocketActivation = true;
89+
shareIpv6port = false;
90+
hostAddr = "0.0.0.0";
8991
environments = cardano-node.environments.x86_64-linux;
9092
nodeConfig = cardano-node.environments.x86_64-linux.mainnet.nodeConfig // {
9193
hasPrometheus = [ "0.0.0.0" 12798 ];
@@ -103,8 +105,7 @@
103105
];
104106
};
105107
};
106-
systemd.sockets.cardano-node.partOf = [ "cardano-node.socket" ];
107-
systemd.services.cardano-node.after = lib.mkForce [ "network-online.target" "cardano-node.socket" ];
108+
systemd.services.cardano-node.after = lib.mkForce [ "network-online.target" ];
108109
services.trezord.enable = true;
109110
services.udev.extraRules = ''
110111
ACTION=="add", SUBSYSTEM=="thunderbolt", ATTR{authorized}=="0", ATTR{authorized}="1"

nixos/sarov/hardware-configuration.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@
2626
fsType = "zfs";
2727
};
2828

29+
fileSystems."/iog" =
30+
{
31+
device = "sarov/iog";
32+
fsType = "zfs";
33+
};
34+
2935
fileSystems."/boot" =
3036
{
3137
device = "/dev/disk/by-uuid/67E3-17ED";

sam-dotfiles/wezterm.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ return {
88
automatically_reload_config = true,
99
audible_bell = "Disabled",
1010
font_size = 14,
11-
color_scheme = "Gruvbox Dark",
11+
color_scheme = "Gruvbox dark, medium (base16)",
1212
hide_tab_bar_if_only_one_tab = true,
1313
font = wezterm.font_with_fallback({
1414
"Fira Code",

0 commit comments

Comments
 (0)