chore(inputs): Modularize modules, inputs and update instructions

This commit is contained in:
DashieTM 2025-12-19 12:58:17 +01:00
parent decd0f5110
commit 512d6d2dd4
5 changed files with 168 additions and 121 deletions

View file

@ -94,5 +94,20 @@
modules = ./modules;
iso = dashNixLib.buildIso.config.system.build.isoImage;
nixosConfigurations = dashNixLib.buildSystems {root = ./example/.;};
mkFlake = stablePkgs.writeShellApplication {
name = "Create example config";
text =
/*
bash
*/
''
mkdir -p ~/gits/nixos
mkdir -p ~/gits/backup_nixos
mv ~/gits/nixos/* ~/gits/backup_nixos/
cp -r ${./example}/* ~/gits/nixos/
'';
};
};
}