refactor: rename some flake attr directories
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-12-16 15:51:41 -05:00
parent 1ce40f2c1a
commit 6ca0d7248b
329 changed files with 178 additions and 139 deletions

View file

@ -15,7 +15,7 @@ You might find it weird that most of my config is written in TypeScript.
That's because all my desktops run
[AGS](https://github.com/Aylur/ags)
for UI. Click on
[this](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/nixosModules/ags)
[this](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/modules/ags)
to see my configuration.
I'm also a victim of Stockholm syndrome at this point and make my scripts
@ -55,7 +55,7 @@ sudo ln -sf /home/matt/.nix /etc/nixos
| `scopedPackages` | Some custom [package scopes](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/scopedPackages) not available in nixpkgs or modified from it |
| `apps` | Scripts ran from the flake defined [here](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/apps) |
| `homeManagerModules` | [Modules](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/homeManagerModules) made for home-manager |
| `homeManagerModules` | [Modules](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/nixosModules) made for NixOS systems |
| `homeManagerModules` | [Modules](https://git.nelim.org/matt1432/nixos-configs/src/branch/master/modules) made for NixOS systems |
| `formatter` | I format nix code with [alejandra](https://github.com/kamadorueda/alejandra) |
| `devShells.default` | A dev shell to build an ISO from the live-image nixosConfiguration |
| `devShells.ags` | A dev shell to have a NodeJS env when I enter my AGS's config directory |

View file

@ -12,6 +12,6 @@ buildApp {
runtimeInputs = [
nodejs_latest
prefetch-npm-deps
(callPackage ../../nixosModules/docker/updateImage.nix {})
(callPackage ../../modules/docker/updateImage.nix {})
];
}

View file

@ -1,20 +0,0 @@
{
pkgs,
self,
}: let
apps = import ./apps {inherit pkgs self;};
devices = import ./devices {inherit pkgs self;};
devShells = import ./devShells {inherit pkgs self;};
packages = import ./packages {inherit pkgs self;};
in {
# Allow homie to serve a binary cache for the devices away from servivi
aptDevices =
devShells
// (import ./devices {
onlyApt = true;
inherit pkgs self;
});
all = apps // devices // devShells // packages;
inherit apps devices devShells packages;
}

View file

@ -21,7 +21,7 @@
text = ''
cd "$FLAKE/results" || return
nix-fast-build -f ..#nixFastChecks.${pkgs.system}.aptDevices "$@"
nix-fast-build -f ..#nixFastChecks.aptDevices "$@"
'';
};
in {

Some files were not shown because too many files have changed in this diff Show more