Compare commits

...

2 Commits

Author SHA1 Message Date
aaef39d31a ytbn: use own nixpkgs 2026-01-08 21:50:48 -05:00
5138c2da80 impermanence: fix home directory declaration 2026-01-08 21:47:22 -05:00
3 changed files with 17 additions and 6 deletions

20
flake.lock generated
View File

@@ -342,6 +342,22 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_3": {
"locked": {
"lastModified": 1764517877,
"narHash": "sha256-pp3uT4hHijIC8JUK5MEqeAWmParJrgBVzHLNfJDZxg4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2d293cbfa5a793b4c50d17c05ef9e385b90edf6c",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"pre-commit": { "pre-commit": {
"inputs": { "inputs": {
"flake-compat": "flake-compat_2", "flake-compat": "flake-compat_2",
@@ -590,9 +606,7 @@
"ytbn-graphing-software": { "ytbn-graphing-software": {
"inputs": { "inputs": {
"flake-utils": "flake-utils_2", "flake-utils": "flake-utils_2",
"nixpkgs": [ "nixpkgs": "nixpkgs_3",
"nixpkgs"
],
"rust-overlay": "rust-overlay_2" "rust-overlay": "rust-overlay_2"
}, },
"locked": { "locked": {

View File

@@ -66,7 +66,6 @@
ytbn-graphing-software = { ytbn-graphing-software = {
url = "git+https://git.gardling.com/titaniumtown/YTBN-Graphing-Software"; url = "git+https://git.gardling.com/titaniumtown/YTBN-Graphing-Software";
inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };

View File

@@ -38,8 +38,6 @@
}; };
users.root = { users.root = {
home = "/root";
files = [ files = [
".local/share/fish/fish_history" ".local/share/fish/fish_history"
]; ];