diff --git a/configuration.nix b/configuration.nix index 5751fbe..490cd99 100644 --- a/configuration.nix +++ b/configuration.nix @@ -60,21 +60,12 @@ # Enable scanning hardware.sane.enable = true; - # Workaround for https://github.com/NixOS/nixpkgs/issues/273280 - hardware.sane.backends-package = pkgs.sane-backends.overrideAttrs (old: { - configureFlags = (old.configureFlags or []) ++ [ - "--disable-locking" - ]; - }); - hardware.keyboard.zsa.enable = true; - hardware.opengl.enable = true; + hardware.graphics.enable = true; # bluetooth hardware.bluetooth.enable = true; - # Enable sound with pipewire. - sound.enable = true; # hardware.pulseaudio.enable = false; security.rtkit.enable = true; @@ -91,7 +82,7 @@ thunderbird ]; }; - # TODO remove with the next major release, workaround for logseq not working + nixpkgs.config.permittedInsecurePackages = [ "electron-27.3.11" ]; @@ -116,9 +107,9 @@ gimp git glib - gnome.eog - gnome.nautilus - gnome.simple-scan + eog + nautilus + simple-scan gnucash gnumake gnupg diff --git a/flake.lock b/flake.lock index 70253ae..4d2a58f 100644 --- a/flake.lock +++ b/flake.lock @@ -25,16 +25,16 @@ ] }, "locked": { - "lastModified": 1726989464, - "narHash": "sha256-Vl+WVTJwutXkimwGprnEtXc/s/s8sMuXzqXaspIGlwM=", + "lastModified": 1733050161, + "narHash": "sha256-lYnT+EYE47f5yY3KS/Kd4pJ6CO9fhCqumkYYkQ3TK20=", "owner": "nix-community", "repo": "home-manager", - "rev": "2f23fa308a7c067e52dfcc30a0758f47043ec176", + "rev": "62d536255879be574ebfe9b87c4ac194febf47c5", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-24.05", + "ref": "release-24.11", "repo": "home-manager", "type": "github" } @@ -57,16 +57,16 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1733220138, - "narHash": "sha256-Yh5XZ9yVurrcYdNTSWxYgW4+EJ0pcOqgM1043z9JaRc=", + "lastModified": 1733261153, + "narHash": "sha256-eq51hyiaIwtWo19fPEeE0Zr2s83DYMKJoukNLgGGpek=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "bcb68885668cccec12276bbb379f8f2557aa06ce", + "rev": "b681065d0919f7eb5309a93cea2cfa84dec9aa88", "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 5ac355c..44e3a3a 100644 --- a/flake.nix +++ b/flake.nix @@ -3,8 +3,8 @@ inputs = { disko.url = "github:nix-community/disko"; - nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; - home-manager.url = "github:nix-community/home-manager/release-24.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; + home-manager.url = "github:nix-community/home-manager/release-24.11"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; };