summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrisha Shipunov2025-06-27 14:55:29 +0200
committerGrisha Shipunov2025-06-27 14:55:29 +0200
commit31f5f2cd39df8ec77c45a0ebe895eeb545db6f36 (patch)
treeb6d5f7c6650490decf56ae7c5f7955ff8b773e60
parent77f30aa5c040e6916adfd10ba123f8237a33db94 (diff)
nixcpp is still shit
-rw-r--r--flake.lock84
-rw-r--r--flake.nix8
2 files changed, 92 insertions, 0 deletions
diff --git a/flake.lock b/flake.lock
index f3a38b5..76c8bad 100644
--- a/flake.lock
+++ b/flake.lock
@@ -169,6 +169,39 @@
"type": "github"
}
},
+ "flake-utils_3": {
+ "inputs": {
+ "systems": "systems_3"
+ },
+ "locked": {
+ "lastModified": 1731533236,
+ "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
+ "owner": "numtide",
+ "repo": "flake-utils",
+ "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
+ "type": "github"
+ },
+ "original": {
+ "owner": "numtide",
+ "repo": "flake-utils",
+ "type": "github"
+ }
+ },
+ "flakey-profile": {
+ "locked": {
+ "lastModified": 1712898590,
+ "narHash": "sha256-FhGIEU93VHAChKEXx905TSiPZKga69bWl1VB37FK//I=",
+ "owner": "lf-",
+ "repo": "flakey-profile",
+ "rev": "243c903fd8eadc0f63d205665a92d4df91d42d9d",
+ "type": "github"
+ },
+ "original": {
+ "owner": "lf-",
+ "repo": "flakey-profile",
+ "type": "github"
+ }
+ },
"gitignore": {
"inputs": {
"nixpkgs": [
@@ -217,6 +250,41 @@
"type": "github"
}
},
+ "lix": {
+ "flake": false,
+ "locked": {
+ "lastModified": 1750762203,
+ "narHash": "sha256-LmQhjQ7c+AOkwhvR9GFgJOy8oHW35MoQRELtrwyVnPw=",
+ "rev": "38b358ce27203f972faa2973cf44ba80c758f46e",
+ "type": "tarball",
+ "url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/38b358ce27203f972faa2973cf44ba80c758f46e.tar.gz?rev=38b358ce27203f972faa2973cf44ba80c758f46e"
+ },
+ "original": {
+ "type": "tarball",
+ "url": "https://git.lix.systems/lix-project/lix/archive/release-2.93.tar.gz"
+ }
+ },
+ "lix-module": {
+ "inputs": {
+ "flake-utils": "flake-utils_3",
+ "flakey-profile": "flakey-profile",
+ "lix": "lix",
+ "nixpkgs": [
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1750776670,
+ "narHash": "sha256-EfA5K5EZAnspmraJrXQlziffVpaT+QDBiE6yKmuaNNQ=",
+ "rev": "c3c78a32273e89d28367d8605a4c880f0b6607e3",
+ "type": "tarball",
+ "url": "https://git.lix.systems/api/v1/repos/lix-project/nixos-module/archive/c3c78a32273e89d28367d8605a4c880f0b6607e3.tar.gz"
+ },
+ "original": {
+ "type": "tarball",
+ "url": "https://git.lix.systems/lix-project/nixos-module/archive/2.93.1.tar.gz"
+ }
+ },
"microvm": {
"inputs": {
"flake-utils": [
@@ -444,6 +512,7 @@
"authentik-nix": "authentik-nix",
"flake-utils": "flake-utils_2",
"lanzaboote": "lanzaboote",
+ "lix-module": "lix-module",
"microvm": "microvm",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2",
@@ -540,6 +609,21 @@
"type": "github"
}
},
+ "systems_3": {
+ "locked": {
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-systems",
+ "repo": "default",
+ "type": "github"
+ }
+ },
"tmux-yank": {
"flake": false,
"locked": {
diff --git a/flake.nix b/flake.nix
index b279bea..b13b7b8 100644
--- a/flake.nix
+++ b/flake.nix
@@ -3,6 +3,11 @@
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-25.05";
+ lix-module = {
+ url = "https://git.lix.systems/lix-project/nixos-module/archive/2.93.1.tar.gz";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+
flake-utils.url = "github:numtide/flake-utils";
sops-nix = {
@@ -44,6 +49,7 @@
outputs =
inputs@{
lanzaboote,
+ lix-module,
microvm,
nixos-hardware,
nixpkgs,
@@ -100,6 +106,7 @@
sops-nix.nixosModules.sops
lanzaboote.nixosModules.lanzaboote
nixos-hardware.nixosModules.lenovo-thinkpad-t14-amd-gen3
+ lix-module.nixosModules.default
./hosts/toaster
@@ -137,6 +144,7 @@
modules = [
sops-nix.nixosModules.sops
microvm.nixosModules.host
+ lix-module.nixosModules.default
./hosts/minime
./modules/basic-tools