about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--flake.nix4
-rw-r--r--nix/hosts/common/nix.nix2
-rw-r--r--nix/profiles/home-manager/shell.nix2
3 files changed, 4 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 2cfe728..02a25cd 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,10 +2,10 @@
   description = "personal NixOS configurations";
 
   inputs = {
-    nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
+    nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
 
     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/nix/hosts/common/nix.nix b/nix/hosts/common/nix.nix
index d1f0492..2ef6b48 100644
--- a/nix/hosts/common/nix.nix
+++ b/nix/hosts/common/nix.nix
@@ -1,6 +1,6 @@
 { pkgs, ... }: {
   nix = {
-    package = pkgs.nixFlakes;
+    package = pkgs.nixVersions.stable;
 
     gc = {
       user = "root";
diff --git a/nix/profiles/home-manager/shell.nix b/nix/profiles/home-manager/shell.nix
index cd37929..bfeeb09 100644
--- a/nix/profiles/home-manager/shell.nix
+++ b/nix/profiles/home-manager/shell.nix
@@ -67,7 +67,7 @@
   # an alternative to ls
   programs.eza = {
     enable = true;
-    icons = false;
+    icons = "never";
     enableFishIntegration = false;
     extraOptions = [
       "--group-directories-first"