This commit is contained in:
Stuce 2025-11-16 12:12:00 +01:00
parent 1f1e50f91b
commit 5e5c24c65a
2 changed files with 104 additions and 13 deletions

102
flake.lock generated
View file

@ -8,11 +8,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1763287383, "lastModified": 1763291212,
"narHash": "sha256-BRitCTYlZ5XqENQOIxZpwFKpJ2eg3elWQMsO7mKwIbs=", "narHash": "sha256-4bTzGIb4ifWNiAMR740ptEFcML/bErg2OBEBfNBh/WQ=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "049839b64b47a2384670c6f75151e653a0caa3c8", "rev": "b083d7134a1bb4fc9721aceabf5df542abed0ff2",
"revCount": 2, "revCount": 7,
"type": "git", "type": "git",
"url": "https://git.stuce.ch/stuce/calDAVtoCSV" "url": "https://git.stuce.ch/stuce/calDAVtoCSV"
}, },
@ -21,6 +21,43 @@
"url": "https://git.stuce.ch/stuce/calDAVtoCSV" "url": "https://git.stuce.ch/stuce/calDAVtoCSV"
} }
}, },
"flake-compat": {
"flake": false,
"locked": {
"lastModified": 1751685974,
"narHash": "sha256-NKw96t+BgHIYzHUjkTK95FqYRVKB8DHpVhefWSz/kTw=",
"ref": "refs/heads/main",
"rev": "549f2762aebeff29a2e5ece7a7dc0f955281a1d1",
"revCount": 92,
"type": "git",
"url": "https://git.lix.systems/lix-project/flake-compat.git"
},
"original": {
"type": "git",
"url": "https://git.lix.systems/lix-project/flake-compat.git"
}
},
"flake-parts": {
"inputs": {
"nixpkgs-lib": [
"nvf",
"nixpkgs"
]
},
"locked": {
"lastModified": 1760948891,
"narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "flake-parts",
"type": "github"
}
},
"flake-utils": { "flake-utils": {
"inputs": { "inputs": {
"systems": "systems" "systems": "systems"
@ -39,6 +76,21 @@
"type": "github" "type": "github"
} }
}, },
"mnw": {
"locked": {
"lastModified": 1758834834,
"narHash": "sha256-Y7IvY4F8vajZyp3WGf+KaiIVwondEkMFkt92Cr9NZmg=",
"owner": "Gerg-L",
"repo": "mnw",
"rev": "cfbc7d1cc832e318d0863a5fc91d940a96034001",
"type": "github"
},
"original": {
"owner": "Gerg-L",
"repo": "mnw",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1763049705, "lastModified": 1763049705,
@ -55,10 +107,35 @@
"type": "github" "type": "github"
} }
}, },
"nvf": {
"inputs": {
"flake-compat": "flake-compat",
"flake-parts": "flake-parts",
"mnw": "mnw",
"nixpkgs": [
"nixpkgs"
],
"systems": "systems_2"
},
"locked": {
"lastModified": 1762622004,
"narHash": "sha256-NpzzgaoMK8aRHnndHWbYNKLcZN0r1y6icCoJvGoBsoE=",
"owner": "notashelf",
"repo": "nvf",
"rev": "09470524a214ed26633ddc2b6ec0c9bf31a8b909",
"type": "github"
},
"original": {
"owner": "notashelf",
"repo": "nvf",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"calDavToCsv": "calDavToCsv", "calDavToCsv": "calDavToCsv",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"nvf": "nvf"
} }
}, },
"systems": { "systems": {
@ -75,6 +152,21 @@
"repo": "default", "repo": "default",
"type": "github" "type": "github"
} }
},
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -4,10 +4,10 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05"; nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
# nvf = { nvf = {
# url = "github:notashelf/nvf"; url = "github:notashelf/nvf";
# inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
# }; };
# home-manager = { # home-manager = {
# url = "github:nix-community/home-manager"; # url = "github:nix-community/home-manager";
@ -21,15 +21,14 @@
outputs = { self, nixpkgs, outputs = { self, nixpkgs,
# home-manager, # home-manager,
# nvf, nvf, calDavToCsv, ... }: {
calDavToCsv, ... }: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = nixpkgs; specialArgs = nixpkgs;
modules = [ modules = [
./configuration.nix ./configuration.nix
# nvf.nixosModules.default nvf.nixosModules.default
calDavToCsv.nixosModules.calDAVtoCSV calDavToCsv.nixosModules
# home-manager.nixosModules.home-manager # home-manager.nixosModules.home-manager
# { # {
# home-manager.useGlobalPkgs = true; # home-manager.useGlobalPkgs = true;