From 5ff33123952cc6dbfa8feda924e9462a0686dfcf Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Sat, 8 Jun 2024 11:21:16 +0200 Subject: [PATCH] LoutreOS: upgrade to 24.05 --- flake.nix | 6 +++--- systems/LoutreOS/configuration.nix | 2 +- systems/LoutreOS/web.nix | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 18f2591..32d3b48 100644 --- a/flake.nix +++ b/flake.nix @@ -1,12 +1,12 @@ { inputs = { - nixpkgs.url = "flake:nixpkgs/nixos-23.11"; + nixpkgs.url = "flake:nixpkgs/nixos-24.05"; nixpkgs-unstable.url = "flake:nixpkgs/nixos-unstable"; simple-nixos-mailserver = { - url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-23.11"; + url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-24.05"; inputs = { nixpkgs.follows = "nixpkgs-unstable"; - nixpkgs-23_11.follows = "nixpkgs"; + nixpkgs-24_05.follows = "nixpkgs"; }; }; dogetipbot-telegram = { diff --git a/systems/LoutreOS/configuration.nix b/systems/LoutreOS/configuration.nix index a6e4dca..1db9963 100644 --- a/systems/LoutreOS/configuration.nix +++ b/systems/LoutreOS/configuration.nix @@ -37,7 +37,7 @@ }; }; - hardware.usbWwan.enable = true; + hardware.usb-modeswitch.enable = true; # eno1 -> VLAN100 -> Internet # eno2 -> LAN diff --git a/systems/LoutreOS/web.nix b/systems/LoutreOS/web.nix index 9fda161..036a528 100644 --- a/systems/LoutreOS/web.nix +++ b/systems/LoutreOS/web.nix @@ -429,7 +429,7 @@ in }; systemd.services.site-musique = let - djangoEnv =(pkgs.python3.withPackages (ps: with ps; [ gunicorn django_3 pillow setuptools ])); + djangoEnv =(pkgs.python3.withPackages (ps: with ps; [ gunicorn django_4 pillow setuptools ])); in { description = "Site Django de la musique de Meyenheim"; after = [ "network.target" ];