feat: Clean up the imports

This commit is contained in:
uttarayan21
2025-03-26 01:44:41 +05:30
parent 11ade0d192
commit 50a0033557
14 changed files with 36 additions and 36 deletions

View File

@@ -10,7 +10,7 @@
programs.hyprpaper = let
wallpapers = import ../../utils/wallhaven.nix {inherit pkgs;};
in {
enable = device.hasGui;
enable = device.hasGui && pkgs.stdenv.isLinux;
# enable = true;
systemd.enable = true;
systemd.target = "hyprland-session.target";
@@ -22,10 +22,10 @@
};
};
programs.hyprlock = {
enable = device.hasGui;
enable = device.hasGui && pkgs.stdenv.isLinux;
};
wayland.windowManager.hyprland = {
enable = device.hasGui;
enable = device.hasGui && pkgs.stdenv.isLinux;
settings = {
source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf";