diff --git a/flake.lock b/flake.lock index e175683..c784b09 100644 --- a/flake.lock +++ b/flake.lock @@ -261,22 +261,6 @@ "url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz" } }, - "nixpkgs-stable": { - "locked": { - "lastModified": 1731797254, - "narHash": "sha256-df3dJApLPhd11AlueuoN0Q4fHo/hagP75LlM5K1sz9g=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "e8c38b73aeb218e27163376a2d617e61a2ad9b59", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-24.05", - "repo": "nixpkgs", - "type": "github" - } - }, "root": { "inputs": { "betterfox": "betterfox", @@ -289,7 +273,6 @@ "nextcloud-twofactor-totp": "nextcloud-twofactor-totp", "nix-vscode-extensions": "nix-vscode-extensions", "nixpkgs": "nixpkgs", - "nixpkgs-stable": "nixpkgs-stable", "sops-nix": "sops-nix", "treefmt-nix": "treefmt-nix", "wrapper-manager": "wrapper-manager" diff --git a/flake.nix b/flake.nix index aa10d64..c154a0d 100644 --- a/flake.nix +++ b/flake.nix @@ -2,8 +2,6 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; - nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05"; - flake-parts.url = "github:hercules-ci/flake-parts"; deploy-rs = { diff --git a/flake/hosts.nix b/flake/hosts.nix index b75e586..7255202 100644 --- a/flake/hosts.nix +++ b/flake/hosts.nix @@ -5,8 +5,8 @@ ... }: let - unstable = inputs.nixpkgs; - stable = inputs.nixpkgs-stable; + stable = inputs.nixpkgs; + # unstable = inputs.nixpkgs-unstable; mkHost = hostname: nixpkgs: { ${hostname} = nixpkgs.lib.nixosSystem { @@ -29,8 +29,8 @@ in { flake = { nixosConfigurations = lib.mkMerge [ - (mkHost "north" unstable) - (mkHost "inspiron" unstable) + (mkHost "north" stable) + (mkHost "inspiron" stable) (mkHost "stratus" stable) (mkHost "installer" stable) ]; diff --git a/modules/home/de/cliphist.nix b/modules/home/de/cliphist.nix index 215c995..987a76c 100644 --- a/modules/home/de/cliphist.nix +++ b/modules/home/de/cliphist.nix @@ -14,7 +14,8 @@ allowImages = false; }; - systemd.user.services.cliphist.Service.ExecStartPre = "${lib.getExe config.services.cliphist.package} wipe"; + systemd.user.services.cliphist.Service.ExecStartPre = + "${lib.getExe config.services.cliphist.package} wipe"; home.packages = [ (wrappers.rofi { inherit (config.myConfig.de) theme; })