This commit is contained in:
mjallen18
2026-01-16 18:25:49 -06:00
parent 341d522fd4
commit c3865f2742
6 changed files with 11 additions and 12 deletions

View File

@@ -1,39 +0,0 @@
{
lib,
pkgs,
namespace,
...
}:
{
imports = [
./boot.nix
./jovian.nix
];
${namespace} = {
hardware.disko.enable = true;
impermanence.enable = true;
boot.lanzaboote.enable = true;
bootloader.lanzaboote.enable = false;
desktop.cosmic.enable = true;
user = {
name = "matt";
};
network = {
hostName = "allyx";
};
};
environment = {
systemPackages = with pkgs; [
# unigine-superposition
];
variables = {
STEAM_FORCE_DESKTOPUI_SCALING = "1.0";
GDK_SCALE = "1";
LSFG_DLL_PATH = "/home/deck/.steam/steam/steamapps/common/Lossless Scaling/Lossless.dll";
};
};
services.displayManager.gdm.enable = lib.mkForce false;
}