changes 08-09-25
This commit is contained in:
12
overlay/scripts/commands/default.nix
Normal file
12
overlay/scripts/commands/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ super, root }:
|
||||
|
||||
{
|
||||
icanhazip = super.callPackage ./icanhazip.nix {};
|
||||
invoke = super.callPackage ./invoke.nix { self = root; };
|
||||
git-compose = super.callPackage ./git-compose.nix { self = root; };
|
||||
runbg = super.callPackage ./runbg.nix {};
|
||||
splash = super.callPackage ./splash.nix {};
|
||||
toolbelt = super.callPackage ./toolbelt.nix {};
|
||||
viconf = super.callPackage ./viconf.nix {};
|
||||
vipkg = super.callPackage ./vipkg.nix {};
|
||||
}
|
||||
7
overlay/scripts/default.nix
Normal file
7
overlay/scripts/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ super, root, host }:
|
||||
|
||||
# We need to fold all of these into a single attribute set
|
||||
import ./commands { inherit super root; } //
|
||||
import ./nix { inherit super host root; } //
|
||||
import ./misc { inherit super; } //
|
||||
import ./wm-controls { inherit super; }
|
||||
6
overlay/scripts/misc/default.nix
Normal file
6
overlay/scripts/misc/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ super }:
|
||||
|
||||
{
|
||||
color-commit = super.callPackage ./color-commit.nix {};
|
||||
mntstack = super.callPackage ./mntstack.nix {};
|
||||
}
|
||||
9
overlay/scripts/nix/default.nix
Normal file
9
overlay/scripts/nix/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ super, host, root }:
|
||||
|
||||
{
|
||||
fetchfromgh = super.callPackage ./templates/fetchfromgh.nix {};
|
||||
mkshell = super.callPackage ./templates/mkshell.nix {};
|
||||
garbage-collect = super.callPackage ./garbage-collect.nix {};
|
||||
check_updates = super.callPackage ./check_updates.nix {};
|
||||
rebuild = super.callPackage ./rebuild.nix { inherit host; self = root; };
|
||||
}
|
||||
19
overlay/scripts/nix/templates/mkshell.nix
Normal file
19
overlay/scripts/nix/templates/mkshell.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ pkgs ? import <nixpkgs> { } }:
|
||||
|
||||
pkgs.writeShellApplication {
|
||||
name = "mkshell";
|
||||
runtimeInputs = [];
|
||||
text = ''
|
||||
command cat <<EOF
|
||||
devShells.\''${system}.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
];
|
||||
|
||||
shellHook = '''
|
||||
export SHELL=\''${pkgs.zsh}/bin/zsh
|
||||
exec \''${pkgs.zsh}/bin/zsh
|
||||
''';
|
||||
};
|
||||
EOF
|
||||
'';
|
||||
}
|
||||
12
overlay/scripts/wm-controls/default.nix
Normal file
12
overlay/scripts/wm-controls/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ super }:
|
||||
|
||||
{
|
||||
chpaper = super.callPackage ./chpaper.nix {};
|
||||
chscheme = super.callPackage ./chscheme.nix {};
|
||||
keyring = super.callPackage ./keyring.nix {};
|
||||
playshellsound = super.callPackage ./playshellsound.nix {};
|
||||
mkscreenshots = super.callPackage ./mkscreenshots.nix {};
|
||||
moveonscreen = super.callPackage ./moveonscreen.nix {};
|
||||
s_check = super.callPackage ./s_check.nix {};
|
||||
switchmon = super.callPackage ./switchmon.nix {};
|
||||
}
|
||||
Reference in New Issue
Block a user