Compare commits

...

3 Commits

Author SHA1 Message Date
eafa73042a no nh? 2026-01-06 00:56:03 -06:00
e36f899e93 unstable nh? 2026-01-06 00:48:55 -06:00
671b5f92c0 try 2026-01-06 00:19:34 -06:00
9 changed files with 11 additions and 10 deletions

View File

@@ -70,7 +70,7 @@
rofi.enable = true; rofi.enable = true;
firefox.enable = true; firefox.enable = true;
git.enable = true; git.enable = true;
nh.enable = true; #nh.enable = true;
}; };
#monitor=eDP-1, addreserved, 40,0,0,0 #monitor=eDP-1, addreserved, 40,0,0,0

View File

@@ -46,7 +46,7 @@
}; };
}; };
systemd.extraConfig = "DefaultLimitNOFILE=2048"; systemd.settings.Manager.DefaultLimitNOFILE = 2048;
environment.sessionVariables = { environment.sessionVariables = {
WLR_BACKENDS = "headless"; WLR_BACKENDS = "headless";

View File

@@ -24,7 +24,7 @@
}; };
}; };
systemd.extraConfig = "DefaultLimitNOFILE=2048"; systemd.settings.Manager.DefaultLimitNOFILE = 2048;
hardware = { hardware = {
graphics.enable = true; graphics.enable = true;

View File

@@ -34,7 +34,7 @@
mpd.enable = lib.mkDefault true; mpd.enable = lib.mkDefault true;
calcurse.enable = lib.mkDefault true; calcurse.enable = lib.mkDefault true;
git.enable = lib.mkDefault true; git.enable = lib.mkDefault true;
nh.enable = lib.mkDefault true; #nh.enable = lib.mkDefault true;
minimal = lib.mkDefault false; minimal = lib.mkDefault false;
hyprland.enable = lib.mkDefault (config.homeconfig.graphical && !config.homeconfig.standalone); hyprland.enable = lib.mkDefault (config.homeconfig.graphical && !config.homeconfig.standalone);

View File

@@ -64,7 +64,7 @@
fastfetch fastfetch
ncmpcpp ncmpcpp
playerctl playerctl
mpc-cli mpc
ffmpeg ffmpeg
] else []) ++ (if !config.homeconfig.minimal && config.homeconfig.graphical then [ ] else []) ++ (if !config.homeconfig.minimal && config.homeconfig.graphical then [

View File

@@ -2,7 +2,7 @@
imports = [ imports = [
./git ./git
./nh #./nh
./hyprland ./hyprland
./hyprpanel ./hyprpanel
./terminal ./terminal

View File

@@ -19,7 +19,7 @@
''; '';
in lib.replaceStrings [ "<path>" ] [ in lib.replaceStrings [ "<path>" ] [
"${pywalfox-wrapper}/bin/pywalfox-wrapper" "${pywalfox-wrapper}/bin/pywalfox-wrapper"
] (lib.readFile "${pkgs.pywalfox-native}/lib/python3.12/site-packages/pywalfox/assets/manifest.json"); ] (lib.readFile "${pkgs.pywalfox-native}/lib/python3.13/site-packages/pywalfox/assets/manifest.json");
programs.firefox = { programs.firefox = {

View File

@@ -1,4 +1,4 @@
{ config, lib, ... }: { { config, lib, inputs, ... }: {
options.homeconfig.nh.enable = lib.options.mkOption { options.homeconfig.nh.enable = lib.options.mkOption {
type = lib.types.bool; type = lib.types.bool;
@@ -9,7 +9,8 @@
programs.nh = { programs.nh = {
enable = true; enable = true;
flake = "${config.home.homeDirectory}/Projects/Olympus"; package = let pkgs-us = import inputs.nixpkgs-us { system = "x86_64-linux"; }; in pkgs-us.nh;
#flake = "${config.home.homeDirectory}/Projects/Olympus";
clean = { clean = {
enable = true; enable = true;

View File

@@ -9,7 +9,7 @@
programs.rofi = { programs.rofi = {
enable = true; enable = true;
package = pkgs.rofi-wayland; package = pkgs.rofi;
cycle = true; cycle = true;