From 953f45799cb1f946579e9950d5a7e052d771e23d Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 23 Nov 2023 12:02:00 +0100 Subject: [PATCH 1/4] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'home-manager': 'github:nix-community/home-manager/07682fff75d41f18327a871088d20af2710d4744' (2023-09-19) → 'github:nix-community/home-manager/28535c3a34d79071f2ccb68671971ce0c0984d7e' (2023-11-19) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/41de143fda10e33be0f47eab2bfe08a50f234267' (2023-11-06) → 'github:NixOS/nixpkgs/f741f8a839912e272d7e87ccf4b9dbc6012cdaf9' (2023-11-20) --- flake.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 423b329..3f699b0 100644 --- a/flake.lock +++ b/flake.lock @@ -64,11 +64,11 @@ ] }, "locked": { - "lastModified": 1695108154, - "narHash": "sha256-gSg7UTVtls2yO9lKtP0yb66XBHT1Fx5qZSZbGMpSn2c=", + "lastModified": 1700392168, + "narHash": "sha256-v5LprEFx3u4+1vmds9K0/i7sHjT0IYGs7u9v54iz/OA=", "owner": "nix-community", "repo": "home-manager", - "rev": "07682fff75d41f18327a871088d20af2710d4744", + "rev": "28535c3a34d79071f2ccb68671971ce0c0984d7e", "type": "github" }, "original": { @@ -128,11 +128,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1699291058, - "narHash": "sha256-5ggduoaAMPHUy4riL+OrlAZE14Kh7JWX4oLEs22ZqfU=", + "lastModified": 1700501263, + "narHash": "sha256-M0U063Ba2DKL4lMYI7XW13Rsk5tfUXnIYiAVa39AV/0=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "41de143fda10e33be0f47eab2bfe08a50f234267", + "rev": "f741f8a839912e272d7e87ccf4b9dbc6012cdaf9", "type": "github" }, "original": { From ca33374bbc68566409fd545e3aebe5107ec583b9 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 27 Nov 2023 17:47:01 +0100 Subject: [PATCH 2/4] hephaestus: enable tlp for real --- hosts/hephaestus/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/hephaestus/default.nix b/hosts/hephaestus/default.nix index f60ad04..679e719 100644 --- a/hosts/hephaestus/default.nix +++ b/hosts/hephaestus/default.nix @@ -102,6 +102,7 @@ services = { tlp = { + enable = true; settings = { START_CHARGE_THRESH_BAT0 = 70; STOP_CHARGE_THRESH_BAT0 = 80; @@ -141,6 +142,7 @@ # Enable the KDE Plasma Desktop Environment. services.xserver.displayManager.sddm.enable = true; services.xserver.desktopManager.plasma5.enable = true; + services.power-profiles-daemon.enable = false; # Configure console keymap console.keyMap = "us"; From 298a564b9b16129d2fd5696089a2d447e789fbaf Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 27 Nov 2023 17:47:25 +0100 Subject: [PATCH 3/4] hephaestus: disable fancy boot screen --- hosts/hephaestus/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/hephaestus/default.nix b/hosts/hephaestus/default.nix index 679e719..a388fb6 100644 --- a/hosts/hephaestus/default.nix +++ b/hosts/hephaestus/default.nix @@ -22,9 +22,9 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.initrd.systemd.enable = true; - boot.plymouth.enable = true; - boot.kernelParams = ["quiet"]; + # boot.initrd.systemd.enable = true; + # boot.plymouth.enable = true; + # boot.kernelParams = ["quiet"]; boot.initrd.secrets = { "/crypto_keyfile.bin" = null; From 97e03b4493316e1671bb93b9a653d2d15635d6ae Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 30 Nov 2023 01:26:52 +0100 Subject: [PATCH 4/4] hephaestus: edit some locale stuff --- hosts/hephaestus/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/hosts/hephaestus/default.nix b/hosts/hephaestus/default.nix index a388fb6..f5cf2e4 100644 --- a/hosts/hephaestus/default.nix +++ b/hosts/hephaestus/default.nix @@ -130,10 +130,8 @@ LC_MEASUREMENT = "fr_FR.UTF-8"; LC_MONETARY = "fr_FR.UTF-8"; LC_NAME = "fr_FR.UTF-8"; - LC_NUMERIC = "fr_FR.UTF-8"; LC_PAPER = "fr_FR.UTF-8"; LC_TELEPHONE = "fr_FR.UTF-8"; - LC_TIME = "fr_FR.UTF-8"; }; # Enable the X11 windowing system.