Compare commits
4 Commits
4e81647fb6
...
06668cda79
Author | SHA1 | Date |
---|---|---|
Peder Bergebakken Sundt | 06668cda79 | |
Peder Bergebakken Sundt | 2861f939b7 | |
Peder Bergebakken Sundt | 166b80988a | |
Peder Bergebakken Sundt | 4913b22ab9 |
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ inputs, pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
system.autoUpgrade = {
|
system.autoUpgrade = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -12,4 +12,15 @@
|
||||||
"--no-write-lock-file"
|
"--no-write-lock-file"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# workaround for https://github.com/NixOS/nix/issues/6895
|
||||||
|
# via https://git.lix.systems/lix-project/lix/issues/400
|
||||||
|
environment.etc."current-system-flake-inputs.json".source
|
||||||
|
= pkgs.writers.writeJSON "flake-inputs.json" (
|
||||||
|
lib.flip lib.mapAttrs inputs (name: input:
|
||||||
|
# inputs.*.sourceInfo sans outPath, since writeJSON will otherwise serialize sourceInfo like a derivation
|
||||||
|
lib.removeAttrs (input.sourceInfo or {}) [ "outPath" ]
|
||||||
|
// { store-path = input.outPath; } # comment this line if you don't want to retain a store reference to the flake inputs
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
42
flake.lock
42
flake.lock
|
@ -29,11 +29,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1713887124,
|
"lastModified": 1725463969,
|
||||||
"narHash": "sha256-hGTSm0p9xXUYDgsAAr/ORZICo6T6u33vLfX3tILikaQ=",
|
"narHash": "sha256-d3c1TAlIN1PtK+oQP1wO6XbDfmR4SUp/C/4s7G46ARo=",
|
||||||
"owner": "GuillaumeDesforges",
|
"owner": "GuillaumeDesforges",
|
||||||
"repo": "fix-python",
|
"repo": "fix-python",
|
||||||
"rev": "f7f4b33e22414071fc1f9cbf68072c413c3a7fdf",
|
"rev": "2926402234c3f99aa8e4608c51d9ffa73ea403c0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -67,17 +67,17 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1716065905,
|
"lastModified": 1726861911,
|
||||||
"narHash": "sha256-08uhxBzfakfhl/ooc+gMzDupWKYvTeyQZwuvB1SBS7A=",
|
"narHash": "sha256-pXPmVp4AgszzJXlLjj8r9NxoDvxoV4USGaiMwqCyb4M=",
|
||||||
"owner": "Programvareverkstedet",
|
"ref": "refs/heads/master",
|
||||||
"repo": "grzegorz",
|
"rev": "d10db19d7df5c5c2cd2dcb878376d5d681f6c2f2",
|
||||||
"rev": "0481aef6553ae9aee86e4edb4ca0ed4f2eba2058",
|
"revCount": 94,
|
||||||
"type": "github"
|
"type": "git",
|
||||||
|
"url": "https://git.pvv.ntnu.no/Projects/grzegorz.git"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "Programvareverkstedet",
|
"type": "git",
|
||||||
"repo": "grzegorz",
|
"url": "https://git.pvv.ntnu.no/Projects/grzegorz.git"
|
||||||
"type": "github"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"grzegorz-clients": {
|
"grzegorz-clients": {
|
||||||
|
@ -87,17 +87,17 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1716115695,
|
"lastModified": 1726861934,
|
||||||
"narHash": "sha256-aI65l4x+U5v3i/nfn6N3eW5IZodmf4pyAByE7vTJh8I=",
|
"narHash": "sha256-lOzPDwktd+pwszUTbpUdQg6iCzInS11fHLfkjmnvJrM=",
|
||||||
"owner": "Programvareverkstedet",
|
"ref": "refs/heads/master",
|
||||||
"repo": "grzegorz-clients",
|
"rev": "546d921ec46735dbf876e36f4af8df1064d09432",
|
||||||
"rev": "b9444658fbb39cd1bf1c61ee5a1d5f0641c49abe",
|
"revCount": 78,
|
||||||
"type": "github"
|
"type": "git",
|
||||||
|
"url": "https://git.pvv.ntnu.no/Projects/grzegorz-clients.git"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "Programvareverkstedet",
|
"type": "git",
|
||||||
"repo": "grzegorz-clients",
|
"url": "https://git.pvv.ntnu.no/Projects/grzegorz-clients.git"
|
||||||
"type": "github"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"matrix-next": {
|
"matrix-next": {
|
||||||
|
|
|
@ -23,9 +23,9 @@
|
||||||
nix-gitea-themes.url = "git+https://git.pvv.ntnu.no/oysteikt/nix-gitea-themes.git";
|
nix-gitea-themes.url = "git+https://git.pvv.ntnu.no/oysteikt/nix-gitea-themes.git";
|
||||||
nix-gitea-themes.inputs.nixpkgs.follows = "nixpkgs";
|
nix-gitea-themes.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
grzegorz.url = "github:Programvareverkstedet/grzegorz";
|
grzegorz.url = "git+https://git.pvv.ntnu.no/Projects/grzegorz.git";
|
||||||
grzegorz.inputs.nixpkgs.follows = "nixpkgs";
|
grzegorz.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
grzegorz-clients.url = "github:Programvareverkstedet/grzegorz-clients";
|
grzegorz-clients.url = "git+https://git.pvv.ntnu.no/Projects/grzegorz-clients.git";
|
||||||
grzegorz-clients.inputs.nixpkgs.follows = "nixpkgs";
|
grzegorz-clients.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
minecraft-data.url = "git+https://git.pvv.ntnu.no/Drift/minecraft-data.git";
|
minecraft-data.url = "git+https://git.pvv.ntnu.no/Drift/minecraft-data.git";
|
||||||
|
|
Loading…
Reference in New Issue