From 2bf580f40a9505abf21403a8c08cd29a036f5711 Mon Sep 17 00:00:00 2001 From: cnst Date: Fri, 27 Sep 2024 18:26:10 +0200 Subject: [PATCH] some minor typos and housekeeping --- .scripts/default.nix | 1 + README.md | 4 +--- flake.nix | 6 ------ 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.scripts/default.nix b/.scripts/default.nix index b0f3746d..72d4d539 100644 --- a/.scripts/default.nix +++ b/.scripts/default.nix @@ -1,3 +1,4 @@ +# yanked from https://github.com/NotAShelf/nyx/ { config, pkgs, diff --git a/README.md b/README.md index efeea972..373c8d44 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # cnix -Personal daily driver. Much is inspired, if not completely yanked, from the -repositories below. +Personal daily driver. Lots taken from the repos below. - [fufexan](https://github.com/fufexan/dotfiles.git) -- [colemickens](https://github.com/colemickens/nixcfg.git) - [Misterio77](https://github.com/Misterio77/nix-config.git) diff --git a/flake.nix b/flake.nix index 22340fff..924e1819 100644 --- a/flake.nix +++ b/flake.nix @@ -13,12 +13,6 @@ perSystem = {pkgs, ...}: { devShells = import ./system/nix/shell {inherit pkgs inputs;}; formatter = pkgs.alejandra; - - packages.cleanup-boot = pkgs.buildFHSUserEnv { - name = "cleanup-boot"; - targetPkgs = pkgs: [pkgs.bash]; - runScript = ./.scripts/cleanup-boot.sh; - }; }; };