This commit is contained in:
mjallen18
2025-09-05 12:07:41 -05:00
parent 73cb9010e2
commit c7ac858ec5
5 changed files with 28 additions and 237 deletions

View File

@@ -1,22 +1,12 @@
# Snowfall Lib provides a customized `lib` instance with access to your flake's library
{
# as well as the libraries available from your flake's inputs.
# An instance of `pkgs` with your overlays and packages applied is also available.
# You also have access to your flake's inputs.
# Additional metadata is provided by Snowfall Lib.
namespace, # The namespace used for your flake, defaulting to "internal" if not set. # The system architecture for this host (eg. `x86_64-linux`). # The Snowfall Lib target for this system (eg. `x86_64-iso`). # A normalized name for the system target (eg. `iso`). # A boolean to determine whether this system is a virtual target using nixos-generators. # An attribute map of your defined hosts.
# All other arguments come from the system system.
lib,
namespace,
...
}:
{
imports = [
./boot.nix
./configuration.nix
./jovian.nix
# ./networking.nix - moved to modules/nixos/network
./sops.nix
];
${namespace} = {
@@ -31,4 +21,14 @@
hostName = "steamdeck";
};
};
environment = {
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;
}