Compare commits
3 Commits
4e3d74795b
...
eafa73042a
| Author | SHA1 | Date | |
|---|---|---|---|
| eafa73042a | |||
| e36f899e93 | |||
| 671b5f92c0 |
@@ -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
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.extraConfig = "DefaultLimitNOFILE=2048";
|
systemd.settings.Manager.DefaultLimitNOFILE = 2048;
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
WLR_BACKENDS = "headless";
|
WLR_BACKENDS = "headless";
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.extraConfig = "DefaultLimitNOFILE=2048";
|
systemd.settings.Manager.DefaultLimitNOFILE = 2048;
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
graphics.enable = true;
|
graphics.enable = true;
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
@@ -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 [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./git
|
./git
|
||||||
./nh
|
#./nh
|
||||||
./hyprland
|
./hyprland
|
||||||
./hyprpanel
|
./hyprpanel
|
||||||
./terminal
|
./terminal
|
||||||
|
|||||||
@@ -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 = {
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.rofi-wayland;
|
package = pkgs.rofi;
|
||||||
|
|
||||||
cycle = true;
|
cycle = true;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user