feat(nixosModules/desktop): add steam

This commit is contained in:
Mohammad Rafiq 2025-05-25 19:08:11 +08:00
parent cd569cd72f
commit 5396f6dd63
No known key found for this signature in database
5 changed files with 53 additions and 23 deletions

View file

@ -3,30 +3,37 @@
...
}:
{
system.hostname = "nemesis";
system.mainUser.name = "rafiq";
system.mainUser.publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdsZyY3gu8IGB8MzMnLdh+ClDxQQ2RYG9rkeetIKq8n";
system.bootloader = "systemd-boot";
hardware.drives.btrfs = {
enable = true;
drive = "/dev/disk/by-id/nvme-CT2000P3SSD8_2325E6E77434";
ephemeralRoot = true;
system = {
hostname = "nemesis";
mainUser.name = "rafiq";
mainUser.publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdsZyY3gu8IGB8MzMnLdh+ClDxQQ2RYG9rkeetIKq8n";
bootloader = "systemd-boot";
};
hardware.platform = "amd";
hardware.gpu = "nvidia";
desktop.windowManager = "hyprland";
desktop.browser = "firefox";
desktop.terminal = "ghostty";
desktop.lockscreen = "hyprlock";
desktop.notification-daemon = "mako";
desktop.mainMonitor = {
id = "desc:OOO AN-270W04K";
scale = "2";
resolution = "3840x2160";
refresh-rate = "60";
hardware = {
drives.btrfs = {
enable = true;
drive = "/dev/disk/by-id/nvme-CT2000P3SSD8_2325E6E77434";
ephemeralRoot = true;
};
platform = "amd";
gpu = "nvidia";
};
desktop.enableSpotifyd = true;
desktop = {
windowManager = "hyprland";
browser = "firefox";
terminal = "ghostty";
lockscreen = "hyprlock";
notification-daemon = "mako";
mainMonitor = {
id = "desc:OOO AN-270W04K";
scale = "2";
resolution = "3840x2160";
refresh-rate = "60";
};
enableSpotifyd = true;
enableSteam = true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}