wow
This commit is contained in:
parent
3adc5e9f73
commit
be184a26ff
12 changed files with 146 additions and 7 deletions
37
hosts/installer/default.nix
Normal file
37
hosts/installer/default.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
inputs,
|
||||
overlays,
|
||||
}:
|
||||
let
|
||||
inherit (inputs) nixpkgs;
|
||||
in
|
||||
nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
||||
modules = [
|
||||
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix"
|
||||
|
||||
"${inputs.self}/modules/mizukios/base"
|
||||
|
||||
({ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
fastfetch
|
||||
git
|
||||
neovim
|
||||
|
||||
ghostty
|
||||
cryptsetup
|
||||
lvm2
|
||||
sbctl
|
||||
];
|
||||
|
||||
security.sudo.enable = false;
|
||||
|
||||
environment.etc.flake.source = "${inputs.self}";
|
||||
})
|
||||
];
|
||||
|
||||
specialArgs = {
|
||||
inherit inputs overlays;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue