summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake.nix4
-rw-r--r--home/desktop.nix2
-rw-r--r--home/path.nix4
-rw-r--r--pkgs/scripts/clip.nix4
-rw-r--r--sys/baseline/default.nix4
-rw-r--r--sys/seat/default.nix5
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;