restructure desktop/wm and remove nur
This commit is contained in:
43
modules/wm/steam/default.nix
Normal file
43
modules/wm/steam/default.nix
Normal file
@@ -0,0 +1,43 @@
|
||||
#
|
||||
# Gnome configuration
|
||||
#
|
||||
# flake.nix
|
||||
# ├─ ./hosts
|
||||
# │ └─ ./laptop
|
||||
# │ └─ default.nix
|
||||
# └─ ./modules
|
||||
# └─ ./desktop
|
||||
# └─ ./gnome
|
||||
# └─ default.nix *
|
||||
#
|
||||
{ config, lib, user, pkgs, jovian-nixos, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
(jovian-nixos + "/modules")
|
||||
];
|
||||
|
||||
jovian = {
|
||||
steam = {
|
||||
enable = true;
|
||||
user = "kabbone";
|
||||
autoStart = true;
|
||||
desktopSession = "plasmawayland";
|
||||
};
|
||||
devices.steamdeck = {
|
||||
enable = true;
|
||||
};
|
||||
decky-loader.enable = true;
|
||||
};
|
||||
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
driSupport = true;
|
||||
driSupport32Bit = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
steamdeck-firmware
|
||||
];
|
||||
|
||||
}
|
||||
26
modules/wm/steam/home.nix
Normal file
26
modules/wm/steam/home.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
#
|
||||
# Gnome NixOS & Home manager configuration
|
||||
#
|
||||
# flake.nix
|
||||
# ├─ ./hosts
|
||||
# │ └─ ./steamdeck
|
||||
# │ └─ home.nix
|
||||
# └─ ./modules
|
||||
# └─ ./desktop
|
||||
# └─ ./steam
|
||||
# └─ home.nix *
|
||||
#
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
steam
|
||||
jq
|
||||
appimage-run
|
||||
gnome.zenity
|
||||
unzip
|
||||
fuse
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user