mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 13:29:22 +02:00
add nixos-generator
This commit is contained in:
parent
7a987a1fc3
commit
fea6ae70a4
4 changed files with 92 additions and 0 deletions
13
flake.nix
13
flake.nix
|
@ -27,6 +27,11 @@
|
|||
inputs.nix-filter.follows = "nix-filter";
|
||||
};
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
||||
nixos-generators = {
|
||||
url = "github:nix-community/nixos-generators";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.nixlib.follows = "nixpkgs-lib";
|
||||
};
|
||||
tela-icon-theme = {
|
||||
url = "github:vinceliuice/Tela-icon-theme";
|
||||
flake = false;
|
||||
|
@ -113,6 +118,14 @@
|
|||
self.outputs.nixosModules.default
|
||||
];
|
||||
};
|
||||
installer = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = inputs;
|
||||
modules = [
|
||||
./systems/installer
|
||||
self.outputs.nixosModules.default
|
||||
];
|
||||
};
|
||||
steamdeck = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = inputs;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue