laptop iso

This commit is contained in:
Vivian 2022-11-28 23:36:13 +01:00
parent cbc1571f36
commit af0d2f4d72
4 changed files with 28 additions and 3 deletions

View file

@ -114,6 +114,12 @@
modules = [ (import ./nixos/iso.nix) ];
};
iso-graphical = nixos-generators.nixosGenerate {
inherit system pkgs;
format = "iso";
modules = [ (import ./nixos/iso-graphical.nix) ];
};
proxmox-lxc = nixos-generators.nixosGenerate {
inherit system pkgs;
format = "proxmox-lxc";

View file

@ -3,4 +3,8 @@
hostname = "null";
type = "local";
}
# {
# hostname = "aoife";
# type = "local";
# }
]

15
nixos/iso-graphical.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs, modulesPath, lib, config, ... }: {
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix"
];
# use the latest Linux kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
environment.systemPackages = with pkgs; [
git
];
# Needed for https://github.com/NixOS/nixpkgs/issues/58959
boot.supportedFilesystems = lib.mkForce [ "btrfs" "ext4" ];
}

View file

@ -1,10 +1,10 @@
{ lib, stdenvNoCC, fetchurl }: stdenvNoCC.mkDerivation {
pname = "gitea-agatheme";
version = "1.1";
version = "1.2";
src = fetchurl {
url = "https://git.lain.faith/attachments/4c2c2237-1e67-458e-8acd-92a20d382777";
sha256 = "sha256-uwtg6BAR5J28Ls3naQkJg7xBEfZPXVS5INH+bsVn4Uk=";
url = "https://git.lain.faith/attachments/290e2304-92a3-4991-8703-fbbf52f31340";
sha256 = "424f4e232c7d759485cdf1bcde9edde50f2992cf6bde61c21f71eae03a905543";
};
phases = [ "installPhase" ];