This commit is contained in:
4DBug
2026-02-05 21:55:28 -06:00
parent 893bf6fbbc
commit 120e6c60ed
8 changed files with 25 additions and 19 deletions

View File

@@ -2,4 +2,4 @@
# Do not delete. # Do not delete.
folderID: nix folderID: nix
created: 2026-01-29T23:06:32-06:00 created: 2026-01-29T23:05:44-06:00

2
.stignore Normal file
View File

@@ -0,0 +1,2 @@
device.nix
hardware-configuration.nix

View File

@@ -1 +1 @@
{ device = "laptop"; } { device = "desktop"; }

24
flake.lock generated
View File

@@ -127,11 +127,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1768135262, "lastModified": 1769996383,
"narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=", "narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=",
"owner": "hercules-ci", "owner": "hercules-ci",
"repo": "flake-parts", "repo": "flake-parts",
"rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac", "rev": "57928607ea566b5db3ad13af0e57e921e6b12381",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -311,11 +311,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1769832985, "lastModified": 1770329357,
"narHash": "sha256-PKONM6JUGWviRsv3tZWj72HE0aeHKcHTrzTskj58MRM=", "narHash": "sha256-Z5bDEg5TwVF+v7LHS6PaKO6+2eekNGc4Y6kvKHSOt6c=",
"owner": "LovingMelody", "owner": "LovingMelody",
"repo": "nix-citizen", "repo": "nix-citizen",
"rev": "47823c1ea4c53153dabd43f08b26f3c67c557542", "rev": "f5f929f6b1d8c292e450f217e98e5c0a4fd5557a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -465,11 +465,11 @@
}, },
"nixpkgs_4": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1769461804, "lastModified": 1770197578,
"narHash": "sha256-msG8SU5WsBUfVVa/9RPLaymvi5bI8edTavbIq3vRlhI=", "narHash": "sha256-AYqlWrX09+HvGs8zM6ebZ1pwUqjkfpnv8mewYwAo+iM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "bfc1b8a4574108ceef22f02bafcf6611380c100d", "rev": "00c21e4c93d963c50d4c0c89bfa84ed6e0694df2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -769,11 +769,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1769515380, "lastModified": 1770228511,
"narHash": "sha256-CWWK3PaQ7zhr+Jcf5zyaTR2cfRBXPo09H7+5nWApL8s=", "narHash": "sha256-wQ6NJSuFqAEmIg2VMnLdCnUc0b7vslUohqqGGD+Fyxk=",
"owner": "numtide", "owner": "numtide",
"repo": "treefmt-nix", "repo": "treefmt-nix",
"rev": "9911802c2822def2eec3d22e2cafd1619ede94a5", "rev": "337a4fe074be1042a35086f15481d763b8ddc0e7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -16,9 +16,13 @@
stateVersion = "25.11"; stateVersion = "25.11";
packages = with pkgs; [ packages = with pkgs; [
] ++ (if device == "server" then [
gh gh
luajit luajit
]; nodejs
node2nix
] else []);
file = {}; file = {};

View File

@@ -76,7 +76,7 @@
bash.shellAliases = { bash.shellAliases = {
fetch = "fastfetch --file ~/nix/nix.ans"; fetch = "fastfetch --file ~/nix/nix.ans";
rebuild = "ns os switch ~/nix"; #"sudo nixos-rebuild switch --impure"; # home-manager switch --impure rebuild = "nh os switch ~/nix"; #"sudo nixos-rebuild switch --impure"; # home-manager switch --impure
#pissh = "ssh -t $(avahi-resolve-host-name -4 pi.home | awk '{print $2}')"; #pissh = "ssh -t $(avahi-resolve-host-name -4 pi.home | awk '{print $2}')";
#pi = "pissh \"cd $(pwd) && bash\""; #pi = "pissh \"cd $(pwd) && bash\"";

View File

@@ -6,7 +6,7 @@
services.copyparty = { services.copyparty = {
enable = true; enable = true;
user = "copyparty"; user = "bug";
group = "copyparty"; group = "copyparty";
@@ -19,7 +19,7 @@
accounts = { accounts = {
bug = { bug = {
passwordFile = ""; passwordFile = "/home/bug/mailserver/bug.passwd";
}; };
}; };