From 0ebabf8b1ea0c7fe7699b8e708f2fd06554bf4d6 Mon Sep 17 00:00:00 2001 From: Kevin Kandlbinder Date: Sun, 24 Nov 2024 16:00:21 +0100 Subject: [PATCH] Bump to 24.11 --- flake.lock | 16 ++++++++-------- flake.nix | 4 ++-- nixos/kevin-tp/configuration.nix | 4 ++-- nixos/modules/gnome.nix | 7 +++---- 4 files changed, 15 insertions(+), 16 deletions(-) diff --git a/flake.lock b/flake.lock index 4b3c33a..47f8b66 100644 --- a/flake.lock +++ b/flake.lock @@ -160,16 +160,16 @@ ] }, "locked": { - "lastModified": 1726989464, - "narHash": "sha256-Vl+WVTJwutXkimwGprnEtXc/s/s8sMuXzqXaspIGlwM=", + "lastModified": 1732453608, + "narHash": "sha256-HeFye2mgoBZWtRLMSwGxdNabB4haWeWw2mS+hDF0mTo=", "owner": "nix-community", "repo": "home-manager", - "rev": "2f23fa308a7c067e52dfcc30a0758f47043ec176", + "rev": "2777de38dd20826238712c8fdaac3e960773e43a", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-24.05", + "ref": "release-24.11", "repo": "home-manager", "type": "github" } @@ -197,16 +197,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1731797254, - "narHash": "sha256-df3dJApLPhd11AlueuoN0Q4fHo/hagP75LlM5K1sz9g=", + "lastModified": 1731755305, + "narHash": "sha256-v5P3dk5JdiT+4x69ZaB18B8+Rcu3TIOrcdG4uEX7WZ8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "e8c38b73aeb218e27163376a2d617e61a2ad9b59", + "rev": "057f63b6dc1a2c67301286152eb5af20747a9cb4", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-24.05", + "ref": "nixos-24.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 5501141..545b02c 100644 --- a/flake.nix +++ b/flake.nix @@ -2,13 +2,13 @@ description = "Kevin's NixOS configurations"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; sops-nix = { url = github:Mic92/sops-nix; inputs.nixpkgs.follows = "nixpkgs"; }; home-manager = { - url = "github:nix-community/home-manager/release-24.05"; + url = "github:nix-community/home-manager/release-24.11"; inputs.nixpkgs.follows = "nixpkgs"; }; stylix = { diff --git a/nixos/kevin-tp/configuration.nix b/nixos/kevin-tp/configuration.nix index 9a83f7e..f8d9713 100644 --- a/nixos/kevin-tp/configuration.nix +++ b/nixos/kevin-tp/configuration.nix @@ -65,9 +65,9 @@ # enableSSHSupport = true; }; - services.xserver.libinput.enable = true; + services.libinput.enable = true; - hardware.opengl.extraPackages = with pkgs; [ + hardware.graphics.extraPackages = with pkgs; [ vaapiIntel libvdpau-va-gl intel-media-driver diff --git a/nixos/modules/gnome.nix b/nixos/modules/gnome.nix index 650e7cf..e0a1adc 100644 --- a/nixos/modules/gnome.nix +++ b/nixos/modules/gnome.nix @@ -6,8 +6,7 @@ services.flatpak.enable = true; environment.systemPackages = [ - pkgs.gnome.gnome-tweaks - pkgs.gnome.dconf-editor - pkgs.gnome.gnome-tweaks + pkgs.gnome-tweaks + pkgs.dconf-editor ]; -} \ No newline at end of file +}