From 2858d00428baffafe5ae325970ef208b9c7d84f4 Mon Sep 17 00:00:00 2001 From: ShatteredMINT Date: Fri, 14 Feb 2025 02:43:14 +0100 Subject: [PATCH] update to nixos-unstable --- configuration.nix | 5 +++-- flake.lock | 15 +++++++-------- flake.nix | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/configuration.nix b/configuration.nix index 444db4a..32012b9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -63,11 +63,12 @@ fonts = { packages = with pkgs; [ - nerdfonts + # nerdfonts # TODO after 25.05 # change to only install explicit fonts - # nerd-fonts.jetbrains-mono + nerd-fonts.jetbrains-mono + # does not exist # nerd-fonts.jetbrains ]; diff --git a/flake.lock b/flake.lock index 465a69c..9dc52ce 100644 --- a/flake.lock +++ b/flake.lock @@ -7,32 +7,31 @@ ] }, "locked": { - "lastModified": 1736373539, - "narHash": "sha256-dinzAqCjenWDxuy+MqUQq0I4zUSfaCvN9rzuCmgMZJY=", + "lastModified": 1739470101, + "narHash": "sha256-NxNe32VB4XI/xIXrsKmIfrcgtEx5r/5s52pL3CpEcA4=", "owner": "nix-community", "repo": "home-manager", - "rev": "bd65bc3cde04c16755955630b344bc9e35272c56", + "rev": "5031c6d2978109336637977c165f82aa49fa16a7", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-24.11", "repo": "home-manager", "type": "github" } }, "nixpkgs": { "locked": { - "lastModified": 1738435198, - "narHash": "sha256-5+Hmo4nbqw8FrW85FlNm4IIrRnZ7bn0cmXlScNsNRLo=", + "lastModified": 1739214665, + "narHash": "sha256-26L8VAu3/1YRxS8MHgBOyOM8xALdo6N0I04PgorE7UM=", "owner": "NixOs", "repo": "nixpkgs", - "rev": "f6687779bf4c396250831aa5a32cbfeb85bb07a3", + "rev": "64e75cd44acf21c7933d61d7721e812eac1b5a0a", "type": "github" }, "original": { "owner": "NixOs", - "ref": "nixos-24.11", + "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 3a0467f..6072806 100644 --- a/flake.nix +++ b/flake.nix @@ -2,9 +2,9 @@ description = "Flake to handle all my infrastructure"; inputs = { - nixpkgs.url = "github:NixOs/nixpkgs/nixos-24.11"; + nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable"; home-manager = { - url = "github:nix-community/home-manager/release-24.11"; + url = "github:nix-community/home-manager"; # follow defined nixpkgs to prevent version mismatch inputs.nixpkgs.follows = "nixpkgs";