Compare commits

..

3 Commits

Author SHA1 Message Date
John Lancaster
9bc1120795 flake update 2025-06-16 14:14:51 -05:00
John Lancaster
fc29989709 added lazydocker 2025-06-16 14:14:36 -05:00
John Lancaster
45840d962d pruning 2025-06-16 14:14:28 -05:00
4 changed files with 7 additions and 11 deletions

View File

@@ -23,12 +23,8 @@
# sops.age.keyFile = "${userSettings.adHome}/.config/sops/age/keys.txt"; # sops.age.keyFile = "${userSettings.adHome}/.config/sops/age/keys.txt";
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
bash
git
eza
sops sops
gdbm gdbm
btop
]; ];
virtualisation.docker.enable = true; virtualisation.docker.enable = true;

8
flake.lock generated
View File

@@ -269,11 +269,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1750100488, "lastModified": 1750101006,
"narHash": "sha256-WFY6/1AtATVloT/takLMt6/0RNx2ivU1ZXG4Pn64/eA=", "narHash": "sha256-nz1Q/pwhHg9iU5/pYnR2sC5f7X5nhbgnZy05PWjaBJE=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "696f5a00078b39c9ca81802170924c4647ffd5a1", "rev": "8cbb3c7a525d254a32c5db076799934fd6b3ef1e",
"revCount": 16, "revCount": 17,
"type": "git", "type": "git",
"url": "https://gitea.john-stream.com/john/nix-home" "url": "https://gitea.john-stream.com/john/nix-home"
}, },

View File

@@ -35,8 +35,6 @@
nixosSystem = inputs.nixpkgs.lib.nixosSystem; nixosSystem = inputs.nixpkgs.lib.nixosSystem;
userSettings = { userSettings = {
gitUserName = "John Lancaster";
gitUserEmail = "32917998+jsl12@users.noreply.github.com";
userName = "appdaemon"; userName = "appdaemon";
adHome = "/home/appdaemon"; adHome = "/home/appdaemon";
}; };

View File

@@ -17,8 +17,10 @@
home.stateVersion = systemSettings.stateVersion; home.stateVersion = systemSettings.stateVersion;
home.homeDirectory = lib.mkForce "${userSettings.adHome}"; home.homeDirectory = lib.mkForce "${userSettings.adHome}";
systemd.user.startServices = "sd-switch"; # helps with handling systemd services when switching systemd.user.startServices = "sd-switch"; # helps with handling systemd services when switching
programs.ssh.enable = true;
programs.gh.enable = true; programs.gh.enable = true;
home.packages = with pkgs; [
lazydocker
];
}; };
}; };
} }