diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ebb65ad..ea5cb00 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -32,5 +32,5 @@ repos: entry: typos language: system files: .* - exclude: .*\.(png|jpg|jpeg) + exclude: .*\.(png|jpg|jpeg|age) stages: [commit] diff --git a/home/scripts/default.nix b/home/scripts/default.nix index db162f2..bb788f0 100644 --- a/home/scripts/default.nix +++ b/home/scripts/default.nix @@ -1,4 +1,15 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: + +let + nixos-rebuild = + name: word: + pkgs.writers.writeBashBin name '' + env --chdir $HOME/.nixconf sudo nixos-rebuild ${word} --flake .#$(hostname) \ + && ${lib.my.checkPath pkgs.libnotify "notify-send"} nixos-rebuild "Rebuild complete" \ + -a nixos-rebuild \ + -i ${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg + ''; +in { screenshot = with pkgs; @@ -42,5 +53,11 @@ getext = pkgs.writeScriptBin "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq"; + rpaste = pkgs.writers.writeBashBin "rpaste" ''curl -F "file=@$1" http://rusty.ccnlc.eu/''; + + gentest = nixos-rebuild "gentest" "test"; + + genswitch = nixos-rebuild "genswitch" "switch"; + fishl = pkgs.writers.writeFishBin "fishl" ./logo.fish; } diff --git a/home/scripts/list.nix b/home/scripts/list.nix index 9a96301..0a9e7b3 100644 --- a/home/scripts/list.nix +++ b/home/scripts/list.nix @@ -1,8 +1 @@ -{ pkgs, ... }: -with import ./. { inherit pkgs; }; -[ - screenshot - set-background - nixedit - fishl -] +{ pkgs, ... }: builtins.attrValues (import ./. { inherit pkgs; }) diff --git a/home/terminal/fish/default.nix b/home/terminal/fish/default.nix index b37d775..8564c4f 100644 --- a/home/terminal/fish/default.nix +++ b/home/terminal/fish/default.nix @@ -30,12 +30,6 @@ end ''; fish_prompt = builtins.readFile ./fish_prompt.fish; - rebuild = '' - env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) \ - && ${lib.my.checkPath pkgs.libnotify "notify-send"} nixos-rebuild "Rebuild complete" \ - -a nixos-rebuild \ - -i ${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg - ''; revert = '' env --chdir $HOME/.nixconf sudo nixos-rebuild switch --flake .#$(hostname) --rollback ''; diff --git a/hosts/brontes/home.nix b/hosts/brontes/home.nix index 0b2edac..4986fa5 100644 --- a/hosts/brontes/home.nix +++ b/hosts/brontes/home.nix @@ -74,6 +74,10 @@ custom.scripts.nixedit custom.scripts.set-background custom.scripts.fishl + custom.scripts.rpaste + custom.scripts.genswitch + custom.scripts.gentest + ]; }; }; diff --git a/hosts/marr/home.nix b/hosts/marr/home.nix index 2869f6f..105dd16 100644 --- a/hosts/marr/home.nix +++ b/hosts/marr/home.nix @@ -74,6 +74,9 @@ custom.scripts.screenshot custom.scripts.nixedit custom.scripts.set-background + custom.scripts.rpaste + custom.scripts.genswitch + custom.scripts.gentest ]; }; }; diff --git a/modules/nix/nixpkgs.nix b/modules/nix/nixpkgs.nix index b11b638..ff47289 100644 --- a/modules/nix/nixpkgs.nix +++ b/modules/nix/nixpkgs.nix @@ -1,10 +1,10 @@ -{ inputs, ... }: +{ inputs, lib, ... }: { nixpkgs.config = { allowUnfree = true; packageOverrides = pkgs: { custom = { - scripts = import ../../home/scripts { inherit pkgs; }; + scripts = import ../../home/scripts { inherit pkgs lib; }; rofi-obsidian = inputs.rofi-obsidian.outputs.packages.${pkgs.system}.rofi-obsidian; }; };