aboutsummaryrefslogtreecommitdiff
path: root/machines/nixos/x86_64-linux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--machines/nixos/x86_64-linux/rivendell.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/machines/nixos/x86_64-linux/rivendell.nix b/machines/nixos/x86_64-linux/rivendell.nix
index 23d1683..f75fe60 100644
--- a/machines/nixos/x86_64-linux/rivendell.nix
+++ b/machines/nixos/x86_64-linux/rivendell.nix
@@ -21,6 +21,7 @@
];
networking.hostName = "rivendell";
+ networking.networkmanager.enable = true;
networking.useDHCP = lib.mkDefault true;
systemd.network.wait-online.anyInterface = lib.mkDefault config.networking.useDHCP;
@@ -58,5 +59,26 @@
};
};
+ services = {
+ desktopManager.plasma6.enable = true;
+ };
+
+ jovian = {
+ hardware = {
+ has.amd.gpu = true;
+ amd.gpu.enableBacklightControl = false;
+ };
+ steam = {
+ updater.splash = "vendor";
+ enable = true;
+ autoStart = true;
+ user = "fcuny";
+ desktopSession = "plasma";
+ };
+ steamos = {
+ useSteamOSConfig = true;
+ };
+ };
+
system.stateVersion = "23.11"; # Did you read the comment?
}