Compare commits
5 Commits
ff5e0d6bb2
...
be4b7c7d82
| Author | SHA1 | Date | |
|---|---|---|---|
| be4b7c7d82 | |||
| 6c88dcd775 | |||
| a1f0bf30cd | |||
| 873230cfe3 | |||
| 1bf5944f11 |
@@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
home.packages = with pkgs; ([
|
home.packages = with pkgs; ([
|
||||||
|
|
||||||
inputs.disko.packages.${pkgs.system}.disko-install
|
inputs.disko.packages.${pkgs.stdenv.hostPlatform.system}.disko-install
|
||||||
|
|
||||||
kjv
|
kjv
|
||||||
openssh
|
openssh
|
||||||
|
|||||||
@@ -11,12 +11,13 @@
|
|||||||
./hyprlock
|
./hyprlock
|
||||||
./calcurse
|
./calcurse
|
||||||
./firefox
|
./firefox
|
||||||
|
./quickshell
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
||||||
home.packages = lib.mkIf (!config.homeconfig.wal.enable) [
|
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";
|
home.sessionVariables.EDITOR = "nvim";
|
||||||
|
|||||||
@@ -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
|
ublock-origin
|
||||||
keepassxc-browser
|
keepassxc-browser
|
||||||
pywalfox
|
pywalfox
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
config = lib.mkIf config.homeconfig.wal.enable {
|
config = lib.mkIf config.homeconfig.wal.enable {
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
inputs.nixvim.packages.${pkgs.system}.pywal
|
inputs.nixvim.packages.${pkgs.stdenv.hostPlatform.system}.pywal
|
||||||
|
|
||||||
pywal16
|
pywal16
|
||||||
imagemagick
|
imagemagick
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
controlPath = "~/.ssh/master-%r@%n:%p";
|
controlPath = "~/.ssh/master-%r@%n:%p";
|
||||||
controlPersist = "no";
|
controlPersist = "no";
|
||||||
};
|
};
|
||||||
|
enableDefaultConfig = false;
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -23,8 +23,8 @@
|
|||||||
python3 = "python3.13";
|
python3 = "python3.13";
|
||||||
|
|
||||||
hyprrun = with lib; mkMerge [
|
hyprrun = with lib; mkMerge [
|
||||||
(mkIf config.programs.hyprland.withUWSM "uwsm app --")
|
(mkIf config.homeconfig.hyprland.enable "uwsm app --")
|
||||||
(mkIf (!config.programs.hyprland.withUWSM) ";")
|
(mkIf (!config.homeconfig.hyprland.enable) ";")
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user