Fix Jeremiah and hms

Add Jeremiah to the users page
Remove unnecessary home-manager configuration
Convert hms into a shell application
This commit is contained in:
Greg Hellings
2025-06-11 01:24:15 -05:00
parent d61e159706
commit 2443429454
3 changed files with 7 additions and 14 deletions
+1
View File
@@ -35,4 +35,5 @@ in
exodus = greg "exodus";
jude = greg "jude";
isaiah = greg "isaiah";
jeremiah = greg "jeremiah";
}
-12
View File
@@ -53,18 +53,6 @@ in
xfsprogs
];
home-manager = {
backupFileExtension = "bkp";
useGlobalPkgs = true;
useUserPackages = true;
users.greg = import ../home/home.nix;
extraSpecialArgs = {
inherit top overlays;
home = "/home/greg";
host = config.networking.hostName;
};
};
i18n.defaultLocale = "en_US.UTF-8";
nix = {
+6 -2
View File
@@ -1,3 +1,7 @@
{ writeShellScriptBin, ... }:
{ writeShellApplication, coreutils-full, nix-output-monitor, ... }:
writeShellScriptBin "hms" (builtins.readFile ./hms.sh)
writeShellApplication {
name = "hms";
runtimeInputs = [ coreutils-full nix-output-monitor ];
text = (builtins.readFile ./hms.sh);
}