update to 24.05

This commit is contained in:
Sam W 2024-06-08 22:38:42 +01:00
parent 7f90b53891
commit 36ae4c738d
4 changed files with 12 additions and 15 deletions

View File

@ -48,32 +48,32 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1712386041, "lastModified": 1717527182,
"narHash": "sha256-dA82pOMQNnCJMAsPG7AXG35VmCSMZsJHTFlTHizpKWQ=", "narHash": "sha256-vWSkg6AMok1UUQiSYVdGMOXKD2cDFnajITiSi0Zjd1A=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "d6bb9f934f2870e5cbc5b94c79e9db22246141ff", "rev": "845a5c4c073f74105022533907703441e0464bc3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-23.11", "ref": "release-24.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1713995372, "lastModified": 1717880965,
"narHash": "sha256-fFE3M0vCoiSwCX02z8VF58jXFRj9enYUSTqjyHAjrds=", "narHash": "sha256-7dnGrJc38PbjYdGkJ95ZIhvBgbTjETdYUjoYmOgxc5w=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "dd37924974b9202f8226ed5d74a252a9785aedf8", "rev": "27d1200b2051213f338225cc366d49a37170f5d8",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "release-23.11", "ref": "release-24.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

@ -2,11 +2,11 @@
description = "Samw's home environment, as managed by nix/home-manager."; description = "Samw's home environment, as managed by nix/home-manager.";
inputs = { inputs = {
# Nixpkgs # Nixpkgs
nixpkgs = {url = "github:nixos/nixpkgs/release-23.11";}; nixpkgs = {url = "github:nixos/nixpkgs/release-24.05";};
nixpkgs-unstable = {url = "github:nixos/nixpkgs";}; nixpkgs-unstable = {url = "github:nixos/nixpkgs";};
# Other modules # Other modules
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-23.11"; url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";

View File

@ -70,10 +70,7 @@ in {
]; ];
}; };
eza = { eza.enable = true;
enable = true;
enableAliases = true;
};
starship = { starship = {
enable = true; enable = true;

View File

@ -26,6 +26,6 @@
services.gpg-agent = { services.gpg-agent = {
enable = !pkgs.stdenv.isDarwin; enable = !pkgs.stdenv.isDarwin;
enableSshSupport = true; enableSshSupport = true;
pinentryFlavor = "qt"; # for plasma pinentryPackage = "qt"; # for plasma
}; };
} }