aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/profiles/base/default.nix22
-rw-r--r--nixos/alpha/configuration.nix22
2 files changed, 24 insertions, 20 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix
index 4af56cd..ab84648 100644
--- a/home/profiles/base/default.nix
+++ b/home/profiles/base/default.nix
@@ -65,8 +65,25 @@ in
home.keyboard.layout = "us";
home.packages = [
+ # Sway
+ pkgs.autotiling
+ pkgs.swaylock-effects
+ pkgs.swayidle
+ pkgs.swaybg
+ pkgs.wayland-utils
+ pkgs.wl-clipboard
+ pkgs.grim
+ pkgs.slurp
+ pkgs.sway-contrib.grimshot
+ pkgs.waybar
+ pkgs.bemenu
+ pkgs.qt5.qtwayland
+ pkgs.xdg_utils
+
+ # Normal
pkgs.bottom
pkgs.hydra-check
+ pkgs.libnotify
pkgs.nix-tree
pkgs.procs
pkgs.sops
@@ -78,6 +95,11 @@ in
wayland.windowManager.sway = {
enable = true;
+ wrapperFeatures = {
+ base = true;
+ gtk = true;
+ };
+
config = {
bars = [{ command = "${pkgs.waybar}/bin/waybar"; }];
keybindings = { };
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix
index f75b254..1ebddb3 100644
--- a/nixos/alpha/configuration.nix
+++ b/nixos/alpha/configuration.nix
@@ -175,26 +175,8 @@
};
programs = {
- sway = {
- enable = true;
- wrapperFeatures.gtk = true;
-
- extraPackages = with pkgs; [
- autotiling
- swaylock
- swayidle
- swaybg
- wayland-utils
- wl-clipboard
- grim
- slurp
- sway-contrib.grimshot
- waybar
- bemenu
- qt5.qtwayland
- xdg_utils
- ];
- };
+ sway.enable = true;
+ sway.extraPackages = lib.mkForce [];
zsh.enable = true;
zsh.enableCompletion = false;