summaryrefslogtreecommitdiff
path: root/hosts/desktop/configuration.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-01-08 17:15:02 +0100
committeradikro <adikro@disroot.org>2026-01-08 17:15:02 +0100
commit6fc5210d51c630dd944d3050328a784b4ece81ba (patch)
tree0c0759cccefe64fd7d1a00a95919a4e315934b73 /hosts/desktop/configuration.nix
parentdf6d72246bfe33f6f04617c201d45e2f92689560 (diff)
changed pc to stable drivers, updated amdgpu drivers and reverted to older kernel version, added swaylock and swayidle, revamped screenshots and niri keybinds
Diffstat (limited to 'hosts/desktop/configuration.nix')
-rw-r--r--hosts/desktop/configuration.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 7da98ae..af29944 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -13,14 +13,13 @@
core = {
allowUnfree.enable = true;
flatpak.enable = true;
- hardwareTools.enable = true;
audio.enable = true;
bootloader = "systemd-boot";
drivers = {
enable = true;
amdgpu.enable = true;
- stability = "unstable";
+ stability = "stable";
};
fonts.enable = true;
greet.enable = true;
@@ -68,6 +67,10 @@
};
};
+ environment.systemPackages = with pkgs; [
+ rivalcfg
+ ];
+
boot = {
kernelParams = [ "video=DP-1:2560x1440@240" ];
kernelModules = [ "nct6687" ];
@@ -88,7 +91,7 @@
wantedBy = [ "default.target" ];
serviceConfig = {
- ExecStart = "${pkgs.python3.withPackages (ps: [ ps.pypresence ])}/bin/python3 /etc/nixos/hosts/desktop/resources/zzz.py";
+ ExecStart = "${pkgs.python3.withPackages (ps: [ ps.pypresence ])}/bin/python3 /etc/nixos/resources/zzz.py";
Restart = "always";
RestartSec = "10";
};