diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2024-10-24 21:34:15 +0200 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2024-10-24 21:34:15 +0200 |
commit | 9590aefe5bdaf9cbf939525180773e53e67eb60c (patch) | |
tree | 7482c81aa07b71060b2894de9982522809a2c71c /services.nix | |
parent | 5df07af3221eebe3ed97adc7701659cb001687a4 (diff) |
Move to sway on wayland using nouveau drivers
Diffstat (limited to 'services.nix')
-rw-r--r-- | services.nix | 44 |
1 files changed, 1 insertions, 43 deletions
diff --git a/services.nix b/services.nix index 02947e1..ad4bfc5 100644 --- a/services.nix +++ b/services.nix @@ -1,9 +1,4 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). - -{ pkgs, ... }: - +{ ... }: { services.pipewire = { enable = true; @@ -11,41 +6,4 @@ alsa.support32Bit = true; pulse.enable = true; }; - - services.displayManager.defaultSession = "none+i3"; - services.displayManager.autoLogin.enable = true; - services.displayManager.autoLogin.user = "jras"; - services.xserver = { - enable = true; - videoDrivers = ["nvidia"]; - windowManager.i3 = { enable = true; - extraPackages = with pkgs; [ - dmenu - i3status - i3lock - i3blocks - ]; - }; - xkb = { - layout = "us"; - variant = "intl"; - }; - }; - - location.latitude = 52.49931951214914; - location.longitude = 4.816707180055415; - - services.redshift = { - enable = true; - - temperature = { - day = 5500; - night = 4500; - }; - - brightness = { - day = "0.8"; - night = "0.7"; - }; - }; } |