mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
steamui doesn't work in virtmanager :(
This commit is contained in:
parent
0dae391f43
commit
1d26018a1c
@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
bulwark = lib.nixosSystem {
|
bulwark = lib.nixosSystem {
|
||||||
inherit system;
|
inherit system;
|
||||||
specialArgs = { inherit user; inherit pkgs-unstable; };
|
specialArgs = { inherit user; inherit pkgs-unstable; inherit jovian-nixos; inherit home-manager; };
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/bulwark/configuration.nix
|
./hosts/bulwark/configuration.nix
|
||||||
./hosts/bulwark/hardware.nix
|
./hosts/bulwark/hardware.nix
|
||||||
|
@ -41,9 +41,9 @@
|
|||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
# Enable sound.
|
# Enable sound.
|
||||||
sound.enable = true;
|
#sound.enable = true;
|
||||||
hardware.pulseaudio.enable = true;
|
#hardware.pulseaudio.enable = true;
|
||||||
hardware.pulseaudio.support32Bit = true;
|
#hardware.pulseaudio.support32Bit = true;
|
||||||
|
|
||||||
# Add fonts
|
# Add fonts
|
||||||
fonts.fonts = with pkgs; [
|
fonts.fonts = with pkgs; [
|
||||||
@ -51,8 +51,8 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
# Enable virtualisation
|
# Enable virtualisation
|
||||||
virtualisation.docker.enable = true;
|
#virtualisation.docker.enable = true;
|
||||||
virtualisation.docker.storageDriver = "btrfs";
|
#virtualisation.docker.storageDriver = "btrfs";
|
||||||
|
|
||||||
# Enable zsh
|
# Enable zsh
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./steam.nix ];
|
imports = [ ./steam.nix ./steam-deck.nix ];
|
||||||
}
|
}
|
||||||
|
@ -1,29 +1,34 @@
|
|||||||
{ config, lib, pkgs, pkgs-unstable, user, jovian-nixos, ... }:
|
{ config, lib, pkgs, pkgs-unstable, user, jovian-nixos, home-manager, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.modules.gaming.steam-deck;
|
cfg = config.modules.gaming.steam-deck;
|
||||||
in {
|
in {
|
||||||
|
imports = [
|
||||||
|
(jovian-nixos + "/modules")
|
||||||
|
home-manager.nixosModule
|
||||||
|
];
|
||||||
options.modules.gaming.steam-deck.enable = lib.mkEnableOption "steam-deck";
|
options.modules.gaming.steam-deck.enable = lib.mkEnableOption "steam-deck";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
imports = [
|
|
||||||
(jovian-nixos + "/modules")
|
|
||||||
home-manager.nixosModule
|
|
||||||
];
|
|
||||||
|
|
||||||
jovian = {
|
jovian = {
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
|
steam.autoStart = true;
|
||||||
|
steam.user = "${user}";
|
||||||
devices.steamdeck = {
|
devices.steamdeck = {
|
||||||
enable = true;
|
enable = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.xserver.displayManager.gdm.wayland = lib.mkForce true; # lib.mkForce is only required on my setup because I'm using some other NixOS configs that conflict with this value
|
services.xserver.displayManager.gdm.wayland = lib.mkForce true; # lib.mkForce is only required on my setup because I'm using some other NixOS configs that conflict with this value
|
||||||
services.xserver.displayManager.defaultSession = "steam-wayland";
|
services.xserver.displayManager.defaultSession = "steam-wayland";
|
||||||
services.xserver.displayManager.autoLogin.enable = true;
|
services.xserver.displayManager.autoLogin.enable = true;
|
||||||
services.xserver.displayManager.autoLogin.user = ${user};
|
services.xserver.displayManager.autoLogin.user = "${user}";
|
||||||
|
|
||||||
# Enable GNOME
|
# Enable GNOME
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
|
hardware.pulseaudio.enable = lib.mkForce false;
|
||||||
|
|
||||||
services.xserver.desktopManager.gnome = {
|
services.xserver.desktopManager.gnome = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
@ -89,9 +94,8 @@ in {
|
|||||||
steamdeck-firmware
|
steamdeck-firmware
|
||||||
];
|
];
|
||||||
|
|
||||||
# GNOME settings through home-manager
|
# GNOME settings through home
|
||||||
home-manager.users.${user} = {
|
home-manager.users.${user} = {
|
||||||
home.stateVersion = "22.11";
|
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
# Enable on-screen keyboard
|
# Enable on-screen keyboard
|
||||||
"org/gnome/desktop/a11y/applications" = {
|
"org/gnome/desktop/a11y/applications" = {
|
||||||
@ -123,4 +127,5 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user