diff --git a/flake.nix b/flake.nix index 3bf7aa7..0e0688c 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/nixos/hosts/thalassa/default.nix b/nixos/hosts/thalassa/default.nix index 54f43a9..5107333 100644 --- a/nixos/hosts/thalassa/default.nix +++ b/nixos/hosts/thalassa/default.nix @@ -3,4 +3,8 @@ hostname = "null"; type = "local"; } + # { + # hostname = "aoife"; + # type = "local"; + # } ] diff --git a/nixos/iso-graphical.nix b/nixos/iso-graphical.nix new file mode 100644 index 0000000..c73a774 --- /dev/null +++ b/nixos/iso-graphical.nix @@ -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" ]; +} diff --git a/nixos/pkgs/gitea-agatheme/default.nix b/nixos/pkgs/gitea-agatheme/default.nix index 23bdcdc..2a87ad7 100644 --- a/nixos/pkgs/gitea-agatheme/default.nix +++ b/nixos/pkgs/gitea-agatheme/default.nix @@ -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" ];