Compare commits

..

10 Commits

Author SHA1 Message Date
Zynh Ludwig d8c069b83b no more lib :( 2024-08-19 09:20:17 -07:00
Zynh Ludwig 0d2734734a ugggGGGG 2024-08-19 07:11:52 -07:00
Zynh Ludwig f1ddb87f03 pkgs: fix borderlessBrowser 2024-08-19 07:10:03 -07:00
Zynh Ludwig a52be13048 trying something? 2024-08-19 07:10:03 -07:00
Zynh Ludwig 41e1f7239a BROKEN: INFINITE RECURSION 2024-08-19 06:50:35 -07:00
Zynh Ludwig 56d5b70499 flake: overlay lib 2024-08-19 06:27:10 -07:00
Zynh Ludwig 57d67276a0 home: nixpkgs disable nixpkgs config 2024-08-19 06:16:59 -07:00
Zynh Ludwig 659d9d7cf8 snowhawk: disable nixpkgs config 2024-08-19 06:16:59 -07:00
Zynh Ludwig 1294bb4972 builders: makePkgs 2024-08-19 06:16:59 -07:00
Zynh Ludwig beb50655f6 xivlauncher: junk testing 2024-08-19 06:02:44 -07:00
6 changed files with 3 additions and 24 deletions

View File

@ -1,17 +0,0 @@
{ lib, config, ... }:
let
cfg = config.snowhawk.direnv;
in
{
options.snowhawk.direnv = {
enable = lib.mkEnableOption "direnv home-manager module";
};
config = lib.mkIf cfg.enable {
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
};
}

View File

@ -3,7 +3,6 @@
let let
cfg = config.snowhawk.git; cfg = config.snowhawk.git;
macos = config.snowhawk.macos.enable; macos = config.snowhawk.macos.enable;
direnv = config.snowhawk.direnv.enable;
sshifyPushUrl = sshifyPushUrl =
let let
@ -36,8 +35,6 @@ in
ignores = [ ignores = [
"Session.vim" "Session.vim"
(lib.mkIf macos ".DS_Store") (lib.mkIf macos ".DS_Store")
(lib.mkIf direnv ".direnv/")
(lib.mkIf direnv ".envrc")
]; ];
aliases = { aliases = {

View File

@ -36,7 +36,6 @@ in
extraConfig = '' extraConfig = ''
set-option -g renumber-windows on set-option -g renumber-windows on
set-option -g focus-events on set-option -g focus-events on
set-option -g terminal-features 'alacritty:RGB'
bind '"' split-window -v -c "#{pane_current_path}" bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"

View File

@ -128,7 +128,7 @@
serviceConfig = { serviceConfig = {
Type = "simple"; Type = "simple";
RemainAfterExit = "true"; RemainAfterExit = "true";
ExecStart = "${lib.getExe pkgs.ethtool} -s enp7s0 wol g"; ExecStart = "${pkgs.ethtool}/sbin/ethtool -s enp7s0 wol g";
}; };
wantedBy = [ "default.target" ]; wantedBy = [ "default.target" ];
}; };

View File

@ -78,7 +78,7 @@
# Enable this if you have graphical corruption issues or application crashes after waking # Enable this if you have graphical corruption issues or application crashes after waking
# up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead # up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead
# of just the bare essentials. # of just the bare essentials.
powerManagement.enable = true; powerManagement.enable = false;
# Fine-grained power management. Turns off GPU when not in use. # Fine-grained power management. Turns off GPU when not in use.
# Experimental and only works on modern Nvidia GPUs (Turing or newer). # Experimental and only works on modern Nvidia GPUs (Turing or newer).

View File

@ -13,10 +13,10 @@ in
package = neovim-package; package = neovim-package;
}; };
snowhawk = { snowhawk = {
direnv.enable = true;
alacritty.enable = true; alacritty.enable = true;
theme.enable = true; theme.enable = true;
projects.enable = true; projects.enable = true;
lazygit.enable = true;
dunst.enable = true; dunst.enable = true;
sops.enable = true; sops.enable = true;
defaultPrograms.enable = true; defaultPrograms.enable = true;