diff options
author | Jasper Ras <jras@hostnet.nl> | 2024-11-14 20:50:33 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2024-11-14 20:52:33 +0100 |
commit | 5040d9d2e951bb65df04041246c1f9a484e91ba2 (patch) | |
tree | cec0593b93a80fdda7be54fe26ac2d809d181fe7 /config/shared.nix | |
parent | 3431a4b4dfbfdcdc83610126a5dc495bebc92b7e (diff) |
move stuff around
Diffstat (limited to 'config/shared.nix')
-rw-r--r-- | config/shared.nix | 61 |
1 files changed, 31 insertions, 30 deletions
diff --git a/config/shared.nix b/config/shared.nix index ec314cb..c961ff4 100644 --- a/config/shared.nix +++ b/config/shared.nix @@ -3,8 +3,6 @@ environment.systemPackages = with pkgs; [ kitty waybar - rofi-wayland-unwrapped - rofi-rbw-wayland helix alacritty firefox @@ -34,35 +32,38 @@ portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; }; }; - services.pipewire = { - enable = true; - alsa.enable = true; - alsa.support32Bit = true; - pulse.enable = true; - }; - services.keyd = { - enable = true; - keyboards = { - default = { - ids = [ "*" ]; - settings.main.capslock = "overload(meta, esc)"; - }; + + services = { + pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + keyd = { + enable = true; + keyboards = { + default = { + ids = [ "*" ]; + settings.main.capslock = "overload(meta, esc)"; + }; + }; + }; + greetd = { + enable = true; + settings = { + default_session = { + command = "${pkgs.hyprland}/bin/hyprland"; + user = "jras"; + }; + }; + }; + gnome.gnome-keyring.enable = true; + openssh = { + enable = true; + openFirewall = false; + settings.AllowUsers = [ "jras" ]; }; - }; - services.greetd = { - enable = true; - settings = { - default_session = { - command = "${pkgs.hyprland}/bin/hyprland"; - user = "jras"; - }; - }; - }; - services.gnome.gnome-keyring.enable = true; - services.openssh = { - enable = true; - openFirewall = false; - settings.AllowUsers = [ "jras" ]; }; systemd.user.services.kanshi = { |