This commit is contained in:
Bryan Ramos 2024-02-28 21:32:24 -05:00
parent 8258e82891
commit 31fb8f6a87
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
4 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,6 @@
{ {
imports = [ ./desktopEnvironments ]; imports = [
./desktopEnvironments
./modules
];
} }

View file

@ -17,13 +17,13 @@ in
HDMI-A-1 = { HDMI-A-1 = {
resolution = "1920x1080"; resolution = "1920x1080";
position = "0,0"; position = "0,0";
bg = "/etc/nixos/src/modules/gui/wallpapers/mountains.jpg fill"; bg = "/etc/nixos/src/user/modules/gui/desktopEnvironments/wallpapers fill";
}; };
DP-1 = { DP-1 = {
resolution = "1080x1920"; resolution = "1080x1920";
position = "1920,0"; position = "1920,0";
transform = "90"; transform = "90";
bg = "/etc/nixos/src/modules/gui/wallpapers/mountains.jpg fill"; bg = "/etc/nixos/src/user/modules/gui/desktopEnvironments/wallpapers fill";
}; };
}; };
modifier = "Mod1"; modifier = "Mod1";

View file

@ -6,7 +6,6 @@ let
in in
{ options.modules.user.gui.sway = { enable = mkEnableOption "user.gui.sway"; }; { options.modules.user.gui.sway = { enable = mkEnableOption "user.gui.sway"; };
imports = [ ../../modules ];
config = mkIf cfg.enable { config = mkIf cfg.enable {
wayland.windowManager.sway = import ./config/sway.nix { inherit pkgs config lib; }; wayland.windowManager.sway = import ./config/sway.nix { inherit pkgs config lib; };
programs.rofi = import ./config/rofi.nix { inherit pkgs config lib; }; programs.rofi = import ./config/rofi.nix { inherit pkgs config lib; };

View file

Before

Width:  |  Height:  |  Size: 609 KiB

After

Width:  |  Height:  |  Size: 609 KiB

Before After
Before After