Compare commits

...

5 Commits

Author SHA1 Message Date
be4b7c7d82 fix warning 2026-01-10 08:07:25 -06:00
6c88dcd775 fix warning 2026-01-10 08:02:07 -06:00
a1f0bf30cd stop warning? 2026-01-10 07:56:48 -06:00
873230cfe3 use an option that exists 2026-01-09 20:33:01 -06:00
1bf5944f11 include quickshell for option 2026-01-09 19:53:28 -06:00
6 changed files with 8 additions and 6 deletions

View File

@@ -25,7 +25,7 @@
home.packages = with pkgs; ([
inputs.disko.packages.${pkgs.system}.disko-install
inputs.disko.packages.${pkgs.stdenv.hostPlatform.system}.disko-install
kjv
openssh

View File

@@ -11,12 +11,13 @@
./hyprlock
./calcurse
./firefox
./quickshell
];
config = {
home.packages = lib.mkIf (!config.homeconfig.wal.enable) [
inputs.nixvim.packages.${pkgs.system}.default
inputs.nixvim.packages.${pkgs.stdenv.hostPlatform.system}.default
];
home.sessionVariables.EDITOR = "nvim";

View File

@@ -49,7 +49,7 @@
];
};
extensions.packages = with inputs.firefox-addons.packages.${pkgs.system}; [
extensions.packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
ublock-origin
keepassxc-browser
pywalfox

View File

@@ -8,7 +8,7 @@
config = lib.mkIf config.homeconfig.wal.enable {
home.packages = with pkgs; [
inputs.nixvim.packages.${pkgs.system}.pywal
inputs.nixvim.packages.${pkgs.stdenv.hostPlatform.system}.pywal
pywal16
imagemagick

View File

@@ -17,6 +17,7 @@
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
enableDefaultConfig = false;
};

View File

@@ -23,8 +23,8 @@
python3 = "python3.13";
hyprrun = with lib; mkMerge [
(mkIf config.programs.hyprland.withUWSM "uwsm app --")
(mkIf (!config.programs.hyprland.withUWSM) ";")
(mkIf config.homeconfig.hyprland.enable "uwsm app --")
(mkIf (!config.homeconfig.hyprland.enable) ";")
];
};