mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31: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"
|
"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": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"betterfox": "betterfox",
|
"betterfox": "betterfox",
|
||||||
|
|
@ -289,7 +273,6 @@
|
||||||
"nextcloud-twofactor-totp": "nextcloud-twofactor-totp",
|
"nextcloud-twofactor-totp": "nextcloud-twofactor-totp",
|
||||||
"nix-vscode-extensions": "nix-vscode-extensions",
|
"nix-vscode-extensions": "nix-vscode-extensions",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nixpkgs-stable": "nixpkgs-stable",
|
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
"treefmt-nix": "treefmt-nix",
|
"treefmt-nix": "treefmt-nix",
|
||||||
"wrapper-manager": "wrapper-manager"
|
"wrapper-manager": "wrapper-manager"
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,6 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
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";
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||||
|
|
||||||
deploy-rs = {
|
deploy-rs = {
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
unstable = inputs.nixpkgs;
|
stable = inputs.nixpkgs;
|
||||||
stable = inputs.nixpkgs-stable;
|
# unstable = inputs.nixpkgs-unstable;
|
||||||
|
|
||||||
mkHost = hostname: nixpkgs: {
|
mkHost = hostname: nixpkgs: {
|
||||||
${hostname} = nixpkgs.lib.nixosSystem {
|
${hostname} = nixpkgs.lib.nixosSystem {
|
||||||
|
|
@ -29,8 +29,8 @@ in
|
||||||
{
|
{
|
||||||
flake = {
|
flake = {
|
||||||
nixosConfigurations = lib.mkMerge [
|
nixosConfigurations = lib.mkMerge [
|
||||||
(mkHost "north" unstable)
|
(mkHost "north" stable)
|
||||||
(mkHost "inspiron" unstable)
|
(mkHost "inspiron" stable)
|
||||||
(mkHost "stratus" stable)
|
(mkHost "stratus" stable)
|
||||||
(mkHost "installer" stable)
|
(mkHost "installer" stable)
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,8 @@
|
||||||
allowImages = false;
|
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 = [
|
home.packages = [
|
||||||
(wrappers.rofi { inherit (config.myConfig.de) theme; })
|
(wrappers.rofi { inherit (config.myConfig.de) theme; })
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue