Begin testing remote builds
This commit is contained in:
parent
1a4e5103b2
commit
7aa39a1110
7 changed files with 109 additions and 68 deletions
|
@ -1,16 +1,15 @@
|
|||
{ config, lib, pkgs, jovian, ... }:
|
||||
{
|
||||
imports = [ jovian.nixosModules.default ];
|
||||
imports = [
|
||||
./gnome
|
||||
jovian.nixosModules.default
|
||||
];
|
||||
|
||||
options.system.steamdeck.enable = lib.mkEnableOption "Jovian NixOS environment";
|
||||
|
||||
config = lib.mkIf config.system.steamdeck.enable {
|
||||
config = lib.mkIf config.jovian.steam.enable {
|
||||
jovian = {
|
||||
steam = {
|
||||
enable = true;
|
||||
autoStart = true;
|
||||
desktopSession = "gnome";
|
||||
user = config.sysusers.main;
|
||||
user = config.vars.mainUser;
|
||||
};
|
||||
decky-loader = {
|
||||
enable = true;
|
||||
|
@ -30,7 +29,6 @@
|
|||
programs.steam.extest.enable = true;
|
||||
|
||||
services = {
|
||||
desktopManager.gnome.enable = true;
|
||||
keyd.enable = lib.mkForce false;
|
||||
tlp.enable = lib.mkForce false;
|
||||
};
|
||||
|
@ -42,51 +40,10 @@
|
|||
wireless.enable = lib.mkForce false;
|
||||
};
|
||||
|
||||
environment = {
|
||||
persistence."/persist".directories = [
|
||||
"/etc/NetworkManager/system-connections"
|
||||
"/var/lib/decky-loader"
|
||||
];
|
||||
gnome.excludePackages = with pkgs; [
|
||||
adwaita-icon-theme
|
||||
baobab
|
||||
epiphany
|
||||
evince
|
||||
file-roller
|
||||
geary
|
||||
gnome-calculator
|
||||
gnome-calendar
|
||||
gnome-characters
|
||||
gnome-clocks
|
||||
gnome-color-manager
|
||||
gnome-connections
|
||||
gnome-console
|
||||
gnome-contacts
|
||||
gnome-disk-utility
|
||||
gnome-font-viewer
|
||||
gnome-logs
|
||||
gnome-maps
|
||||
gnome-music
|
||||
gnome-remote-desktop
|
||||
gnome-shell-extensions
|
||||
gnome-software
|
||||
gnome-system-monitor
|
||||
gnome-text-editor
|
||||
gnome-tour
|
||||
gnome-user-docs
|
||||
gnome-weather
|
||||
loupe
|
||||
nautilus
|
||||
orca
|
||||
seahorse
|
||||
simple-scan
|
||||
snapshot
|
||||
sushi
|
||||
sysprof
|
||||
totem
|
||||
yelp
|
||||
];
|
||||
};
|
||||
environment.persistence."/persist".directories = [
|
||||
"/etc/NetworkManager/system-connections"
|
||||
"/var/lib/decky-loader"
|
||||
];
|
||||
|
||||
nixpkgs.allowUnfreePackages = [
|
||||
"steam"
|
||||
|
@ -96,6 +53,6 @@
|
|||
"xow_dongle-firmware"
|
||||
];
|
||||
|
||||
specialisation.desktop.configuration.config.system.steamdeck.enable = lib.mkForce false;
|
||||
specialisation.desktop.configuration.config.jovian.steam.enable = lib.mkForce false;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue