diff options
Diffstat (limited to 'configuration/core')
-rw-r--r-- | configuration/core/packages.nix | 8 | ||||
-rw-r--r-- | configuration/core/services.nix | 39 |
2 files changed, 2 insertions, 45 deletions
diff --git a/configuration/core/packages.nix b/configuration/core/packages.nix index cf4baea..37d1562 100644 --- a/configuration/core/packages.nix +++ b/configuration/core/packages.nix @@ -1,15 +1,9 @@ { pkgs, ... }: { environment.systemPackages = with pkgs; [ - kitty - - helix - alacritty - firefox git git-crypt - whatsapp-for-linux - obsidian + helix devenv busybox diff --git a/configuration/core/services.nix b/configuration/core/services.nix index 15da1f4..f3d1d24 100644 --- a/configuration/core/services.nix +++ b/configuration/core/services.nix @@ -1,47 +1,10 @@ -{ pkgs, lib, ... }: +{ lib, ... }: { 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 = lib.mkDefault false; settings.AllowUsers = [ "jras" ]; }; }; - - systemd.user.services.kanshi = { - description = "kanshi daemon"; - environment = { - WAYLAND_DISPLAY="wayland-1"; - DISPLAY=":0"; - }; - serviceConfig = { - Type = "simple"; - ExecStart = ''${pkgs.kanshi}/bin/kanshi -c kanshi_config_file''; - }; - }; } |