still trying to get it working...
This commit is contained in:
parent
bca8e8c03c
commit
d870db374c
3 changed files with 12 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
||||||
{ config, ... }:
|
{ lib, config, ... }:let
|
||||||
|
inherit (lib) mkForce;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
modules = {
|
modules = {
|
||||||
system.audio.enable = true;
|
system.audio.enable = true;
|
||||||
|
@ -13,6 +15,7 @@
|
||||||
|
|
||||||
shell = {
|
shell = {
|
||||||
default = "zsh";
|
default = "zsh";
|
||||||
|
toolset.git.enable = mkForce false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{ config, lib, modulesPath, ... }:
|
||||||
let
|
let
|
||||||
inherit (lib.modules) mkDefault;
|
inherit (lib.modules) mkDefault;
|
||||||
in
|
in
|
||||||
|
|
|
@ -12,6 +12,13 @@ in
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
jovian = {
|
jovian = {
|
||||||
|
# devices = {
|
||||||
|
# steamdeck = {
|
||||||
|
# enable = true;
|
||||||
|
# enableGyroDsuService = true;
|
||||||
|
# autoUpdate = true;
|
||||||
|
# };
|
||||||
|
# };
|
||||||
steam = {
|
steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue