feat(desktop): move desktop services config to nixos modules
This commit is contained in:
parent
3040105f9c
commit
527a166a86
6 changed files with 98 additions and 114 deletions
|
@ -9,9 +9,5 @@
|
|||
status-bar.waybar.enable = true;
|
||||
terminal.ghostty.enable = true;
|
||||
window-manager.hyprland.enable = true;
|
||||
enableSpotifyd = true;
|
||||
enableSteam = true;
|
||||
enableVR = true;
|
||||
enableSunshine = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../common.nix
|
||||
|
@ -21,11 +20,18 @@
|
|||
usb.automount = true;
|
||||
};
|
||||
|
||||
desktop.mainMonitor = {
|
||||
id = "desc:OOO AN-270W04K";
|
||||
scale = "2";
|
||||
resolution = "3840x2160";
|
||||
refresh-rate = "60";
|
||||
desktop = {
|
||||
services = {
|
||||
steam.enable = true;
|
||||
sunshine.enable = true;
|
||||
spotifyd.enable = true;
|
||||
};
|
||||
mainMonitor = {
|
||||
id = "desc:OOO AN-270W04K";
|
||||
scale = "2";
|
||||
resolution = "3840x2160";
|
||||
refresh-rate = "60";
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue