mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
Upgrade stratus and installer to 24.11
This commit is contained in:
parent
3d96239b5d
commit
7120414c5a
4 changed files with 6 additions and 24 deletions
17
flake.lock
generated
17
flake.lock
generated
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
];
|
||||
|
|
|
|||
|
|
@ -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; })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue