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:
@@ -35,4 +35,5 @@ in
|
|||||||
exodus = greg "exodus";
|
exodus = greg "exodus";
|
||||||
jude = greg "jude";
|
jude = greg "jude";
|
||||||
isaiah = greg "isaiah";
|
isaiah = greg "isaiah";
|
||||||
|
jeremiah = greg "jeremiah";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,18 +53,6 @@ in
|
|||||||
xfsprogs
|
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";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
|||||||
@@ -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);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user