Fold more logic into the tagging system
This commit is contained in:
parent
3398c611b7
commit
7999794410
14 changed files with 60 additions and 25 deletions
|
@ -3,6 +3,15 @@
|
|||
imports = [ ./desktop ];
|
||||
|
||||
config = lib.mkIf config.jovian.steam.enable {
|
||||
# Kernel and hardware
|
||||
boot = {
|
||||
kernelPackages = lib.mkForce pkgs.linuxPackages_jovian;
|
||||
supportedFilesystems.nfs = lib.mkForce false;
|
||||
};
|
||||
|
||||
hardware.xone.enable = true;
|
||||
|
||||
# Steam and Jovian services
|
||||
jovian = {
|
||||
steam = {
|
||||
autoStart = true;
|
||||
|
@ -18,18 +27,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Evil kernel
|
||||
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_jovian;
|
||||
|
||||
programs.steam.extest.enable = true;
|
||||
|
||||
hardware.xone.enable = true;
|
||||
|
||||
# Use networkmanager for ui compatibility
|
||||
networking = {
|
||||
networkmanager.enable = true;
|
||||
wireless.enable = lib.mkForce false;
|
||||
};
|
||||
# Networkmanager for UI compatibility
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Disable conflicting services
|
||||
services = {
|
||||
|
@ -37,14 +38,6 @@
|
|||
tlp.enable = lib.mkForce false;
|
||||
};
|
||||
|
||||
# Disable network filesystems
|
||||
fileSystems = {
|
||||
"midas".enable = false;
|
||||
"kitty".enable = false;
|
||||
"detritus".enable = false;
|
||||
"prophet".enable = false;
|
||||
};
|
||||
|
||||
environment.persistence."/persist".directories = [
|
||||
"/etc/NetworkManager/system-connections"
|
||||
"/var/lib/decky-loader"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue