Skip to content

Commit

Permalink
chore: fix deprecations/attribute moves
Browse files Browse the repository at this point in the history
  • Loading branch information
johnae committed Aug 17, 2024
1 parent 9a23ad6 commit 7604075
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion hosts/x86_64-linux/eris.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
};
addresses = [
{
addressConfig.Address = "10.100.100.1/24";
Address = "10.100.100.1/24";
}
];
};
Expand Down
2 changes: 1 addition & 1 deletion hosts/x86_64-linux/prometheus.nix
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
};
addresses = [
{
addressConfig.Address = "10.100.2.1/24";
Address = "10.100.2.1/24";
}
];
};
Expand Down
2 changes: 1 addition & 1 deletion hosts/x86_64-linux/sirius.nix
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
};
addresses = [
{
addressConfig.Address = "10.100.1.1/24";
Address = "10.100.1.1/24";
}
];
};
Expand Down
12 changes: 6 additions & 6 deletions profiles/pamu2f.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
userConfigs
));
in {
security.pam.u2f.cue = true;
security.pam.u2f.origin = "pam://1337";
security.pam.u2f.appId = "pam://9000";
security.pam.u2f.enable = true;
security.pam.u2f.control = "required";
security.pam.u2f.authFile = writeU2fKeys u2fMappings;
security.pam.u2f.settings.cue = true;
security.pam.u2f.settings.origin = "pam://1337";
security.pam.u2f.settings.appid = "pam://9000";
security.pam.u2f.settings.enable = true;
security.pam.u2f.settings.control = "required";
security.pam.u2f.settings.authfile = writeU2fKeys u2fMappings;

assertions = [
{
Expand Down
2 changes: 1 addition & 1 deletion profiles/workstation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
services.printing.drivers = [pkgs.gutenprint];
services.ipp-usb.enable = true;

services.dbus.packages = with pkgs; [gcr dconf gnome.sushi];
services.dbus.packages = with pkgs; [gcr dconf sushi];
services.udev.packages = with pkgs; [gnome.gnome-settings-daemon];

environment.etc."systemd/sleep.conf".text = "HibernateDelaySec=8h";
Expand Down
2 changes: 1 addition & 1 deletion users/profiles/workstation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ in {
home.packages = with pkgs; [
element-desktop-wayland
gimp
gnome.nautilus
nautilus
kanshi
lswt
mako
Expand Down

0 comments on commit 7604075

Please sign in to comment.