From 854f5ee287eb66db5a0713e2f4fac56794e3d735 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sat, 30 Nov 2024 12:54:58 -0600 Subject: flake: update to 24.11 --- flake.nix | 4 ++-- home/desktop.nix | 2 +- home/path.nix | 4 ++-- pkgs/scripts/clip.nix | 4 ++-- sys/baseline/default.nix | 4 ++-- sys/seat/default.nix | 5 +---- 6 files changed, 10 insertions(+), 13 deletions(-) diff --git a/flake.nix b/flake.nix index 9d5dbab..258901f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,10 +1,10 @@ { inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; unstable.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager = { - url = "github:nix-community/home-manager/release-24.05"; + url = "github:nix-community/home-manager/release-24.11"; inputs.nixpkgs.follows = "nixpkgs"; }; diff --git a/home/desktop.nix b/home/desktop.nix index 823fe39..fea1f35 100644 --- a/home/desktop.nix +++ b/home/desktop.nix @@ -2,7 +2,7 @@ with lib; { config = mkIf (!config.home.isolation.active) { home.pointerCursor = { - package = pkgs.gnome.adwaita-icon-theme; + package = pkgs.adwaita-icon-theme; gtk.enable = true; name = "Adwaita"; diff --git a/home/path.nix b/home/path.nix index 5480f72..acacdbe 100644 --- a/home/path.nix +++ b/home/path.nix @@ -17,8 +17,8 @@ with lib; { pkgs.calc pkgs.cloc pkgs.gcc - pkgs.gnome.gnome-screenshot - pkgs.gpicview + pkgs.gnome-screenshot + pkgs.loupe # 'gpicview' has been removed due to lack of maintenance upstream pkgs.gruvbox-dark-icons-gtk pkgs.hack-font pkgs.i3-gaps diff --git a/pkgs/scripts/clip.nix b/pkgs/scripts/clip.nix index 501bb3b..b801ccf 100644 --- a/pkgs/scripts/clip.nix +++ b/pkgs/scripts/clip.nix @@ -1,6 +1,6 @@ { lib , writeShellScriptBin -, gnome +, gnome-screenshot , xclip , file , imagemagick @@ -37,7 +37,7 @@ writeShellScriptBin name '' fi CLIP="$HOME/vtmp/$$.png" - ${gnome.gnome-screenshot}/bin/gnome-screenshot "$OPTIONS" -f "$CLIP" + ${gnome-screenshot}/bin/gnome-screenshot "$OPTIONS" -f "$CLIP" ${copyOut} rm "$CLIP" diff --git a/sys/baseline/default.nix b/sys/baseline/default.nix index 9db8aac..3cb457e 100644 --- a/sys/baseline/default.nix +++ b/sys/baseline/default.nix @@ -29,10 +29,10 @@ with lib; { local.boot.impermanence.directories = [ "/var/lib/dhparams" ]; nix = { - package = pkgs.nixFlakes; + package = pkgs.nix; extraOptions = '' - experimental-features = nix-command flakes repl-flake + experimental-features = nix-command flakes ''; # No me interesa el global registry diff --git a/sys/seat/default.nix b/sys/seat/default.nix index ae9cd77..45b14f1 100644 --- a/sys/seat/default.nix +++ b/sys/seat/default.nix @@ -59,9 +59,6 @@ in wireplumber.enable = true; }; - # Remove sound.enable or set it to false if you had it set previously, as sound.enable is only meant for ALSA-based configurations - sound.enable = false; - users = { groups = mapAttrs (_: user: { inherit (user) gid; }) users // { adbusers.gid = 1008; @@ -94,7 +91,7 @@ in ]; }; - hardware.opengl.enable = true; + hardware.graphics.enable = true; programs.dconf.enable = true; -- cgit v1.2.3