37 lines
618 B
Nix
37 lines
618 B
Nix
{
|
|
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;
|
|
};
|
|
}
|