Compare commits
2 commits
07124aad03
...
e505cc23c1
Author | SHA1 | Date | |
---|---|---|---|
|
e505cc23c1 | ||
|
6a6e81a042 |
|
@ -125,5 +125,8 @@
|
|||
];
|
||||
|
||||
systems.hosts.wsl.modules = with inputs; [ nixos-wsl.nixosModules.default ];
|
||||
}
|
||||
// {
|
||||
self = inputs.self;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -18,5 +18,6 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
security.pam.services.sddm.enableGnomeKeyring = true;
|
||||
security.pam.services.greetd.enableGnomeKeyring = true;
|
||||
};
|
||||
}
|
||||
|
|
84
modules/nixos/submodules/games/EVE_bottles.yml
Normal file
84
modules/nixos/submodules/games/EVE_bottles.yml
Normal file
|
@ -0,0 +1,84 @@
|
|||
Arch: win64
|
||||
CompatData: ''
|
||||
Creation_Date: '2024-11-12 18:24:45.924771'
|
||||
Custom_Path: false
|
||||
DLL_Overrides: {}
|
||||
DXVK: dxvk-2.4.1
|
||||
Environment: Custom
|
||||
Environment_Variables: {}
|
||||
External_Programs:
|
||||
b8ae3872-d1d4-435f-ba7f-1cd829b4da81:
|
||||
executable: eve-online-latest+Setup.exe
|
||||
folder: /home/cholli/Downloads
|
||||
id: b8ae3872-d1d4-435f-ba7f-1cd829b4da81
|
||||
name: eve-online-latest+Setup
|
||||
path: /home/cholli/Downloads/eve-online-latest+Setup.exe
|
||||
Installed_Dependencies:
|
||||
- dotnet40
|
||||
- dotnet48
|
||||
- vcredist2022
|
||||
Language: sys
|
||||
LatencyFleX: latencyflex-v0.1.1
|
||||
NVAPI: dxvk-nvapi-v0.7.1
|
||||
Name: EVE
|
||||
Parameters:
|
||||
custom_dpi: 96
|
||||
decorated: true
|
||||
discrete_gpu: false
|
||||
dxvk: true
|
||||
dxvk_nvapi: false
|
||||
fixme_logs: false
|
||||
fsr: false
|
||||
fsr_quality_mode: none
|
||||
fsr_sharpening_strength: 2
|
||||
fullscreen_capture: false
|
||||
gamemode: false
|
||||
gamescope: false
|
||||
gamescope_borderless: false
|
||||
gamescope_fps: 0
|
||||
gamescope_fps_no_focus: 0
|
||||
gamescope_fullscreen: true
|
||||
gamescope_game_height: 0
|
||||
gamescope_game_width: 0
|
||||
gamescope_scaling: false
|
||||
gamescope_window_height: 0
|
||||
gamescope_window_width: 0
|
||||
latencyflex: false
|
||||
mangohud: false
|
||||
mouse_warp: true
|
||||
obsvkc: false
|
||||
pulseaudio_latency: false
|
||||
renderer: gl
|
||||
sandbox: false
|
||||
sync: wine
|
||||
take_focus: false
|
||||
use_be_runtime: true
|
||||
use_eac_runtime: true
|
||||
use_runtime: false
|
||||
use_steam_runtime: false
|
||||
versioning_automatic: false
|
||||
versioning_compression: false
|
||||
versioning_exclusion_patterns: false
|
||||
virtual_desktop: false
|
||||
virtual_desktop_res: 1280x720
|
||||
vkbasalt: false
|
||||
vkd3d: true
|
||||
vmtouch: false
|
||||
vmtouch_cache_cwd: false
|
||||
Path: EVE
|
||||
Runner: caffe-9.7
|
||||
RunnerPath: ''
|
||||
Sandbox:
|
||||
share_net: false
|
||||
share_sound: false
|
||||
State: 0
|
||||
Uninstallers: {}
|
||||
Update_Date: '2024-11-12 18:36:11.134986'
|
||||
VKD3D: vkd3d-proton-2.13
|
||||
Versioning: false
|
||||
Versioning_Exclusion_Patterns: []
|
||||
Windows: win10
|
||||
WorkingDir: /storage/home/bottles
|
||||
data: {}
|
||||
run_in_terminal: false
|
||||
session_arguments: ''
|
41
systems/aarch64-linux/nixberry/default.nix
Normal file
41
systems/aarch64-linux/nixberry/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
lib,
|
||||
modulesPath,
|
||||
inputs,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
|
||||
with lib.${namespace};
|
||||
let
|
||||
inherit (lib) mkForce;
|
||||
in
|
||||
{
|
||||
imports = with inputs.nixos-hardware.nixosModules; [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
(modulesPath + "/installer/sd-card/sd-image-aarch64.nix")
|
||||
raspberry-pi-5
|
||||
];
|
||||
|
||||
${namespace} = {
|
||||
|
||||
submodules = {
|
||||
basics = enabled;
|
||||
};
|
||||
|
||||
system = {
|
||||
boot = {
|
||||
# Raspberry Pi requires a specific bootloader.
|
||||
enable = mkForce false;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
# this value at the release version of the first install of this system.
|
||||
# Before changing this value read the documentation for this option
|
||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "24.05"; # Did you read the comment?
|
||||
}
|
|
@ -15,6 +15,10 @@ in
|
|||
teams-for-linux
|
||||
obsidian
|
||||
zed-editor
|
||||
|
||||
# eve
|
||||
bottles
|
||||
|
||||
];
|
||||
|
||||
environment.pathsToLink = [ "/libexec" ];
|
||||
|
|
Loading…
Reference in a new issue