Compare commits

..

No commits in common. "4ec81a0d626f8cd05b20ba05ce21c2be39499106" and "e777c4f7bb39cee053ef998d6afc2d69e1f51a33" have entirely different histories.

8 changed files with 13 additions and 11 deletions

View file

@ -6,6 +6,9 @@
ags.url = "github:Aylur/ags"; ags.url = "github:Aylur/ags";
stylix.url = "github:danth/stylix"; stylix.url = "github:danth/stylix";
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
}; };
firefox-addons = { firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons"; url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";

View file

@ -3,17 +3,18 @@
{ {
imports = [ imports = [
./rofi
./firefox
./alacritty
./hyprland
./zsh ./zsh
./gtk ./gtk
./git ./git
./ags ./ags
./misc
./rofi
./helix ./helix
./firefox ./misc
./alacritty
./hyprland
inputs.ags.homeManagerModules.default inputs.ags.homeManagerModules.default
inputs.nixvim.homeManagerModules.nixvim
]; ];
} }

View file

@ -38,7 +38,6 @@
{ name = "Zophar's Domain"; url = "https://www.zophar.net/music"; } { name = "Zophar's Domain"; url = "https://www.zophar.net/music"; }
{ name = "Spotify Downloader"; url = "https://spotify-downloader.com/"; } { name = "Spotify Downloader"; url = "https://spotify-downloader.com/"; }
{ name = "Hyprland"; url = "https://wiki.hyprland.org/"; } { name = "Hyprland"; url = "https://wiki.hyprland.org/"; }
{ name = "monkeytype"; url = "https://monkeytype.com/"; }
]; ];
}]; }];

View file

@ -8,7 +8,7 @@
keys.normal = { keys.normal = {
space.space = "file_picker"; space.space = "file_picker";
Z.Z = ":wq"; Z.Z = ":wq";
Z.Q = ":q!"; Z.Q = ":q";
}; };
}; };
}; };

View file

@ -52,7 +52,7 @@
"$mod, M, exec, mbsync -a && alacritty -e neomutt" "$mod, M, exec, mbsync -a && alacritty -e neomutt"
"$mod, A, exec, rofi -show drun" "$mod, A, exec, rofi -show drun"
"$mod, F, exec, freetube" "$mod, F, exec, freetube"
"$mod, C, exec, hyprpicker -a" "$mod, C, exec, hyprpickr -a"
"$mod+Shift, W, exec, bash ~/nix/home/hyprland/vm.sh" "$mod+Shift, W, exec, bash ~/nix/home/hyprland/vm.sh"
"$mod+Shift, Z, exec, grim - | swappy -f -" "$mod+Shift, Z, exec, grim - | swappy -f -"
"$mod, Z, exec, sh ~/nix/home/hyprland/screen.sh" "$mod, Z, exec, sh ~/nix/home/hyprland/screen.sh"

View file

@ -7,6 +7,7 @@
homeDirectory = "/home/joy"; homeDirectory = "/home/joy";
stateVersion = "23.11"; stateVersion = "23.11";
sessionVariables = { sessionVariables = {
# EDITOR = "nvim";
}; };
}; };

View file

@ -29,8 +29,7 @@
em = "hx ~/nix/modules/misc/default.nix"; em = "hx ~/nix/modules/misc/default.nix";
es = "hx ~/nix/modules/stylix/default.nix"; es = "hx ~/nix/modules/stylix/default.nix";
ep = "hx ~/nix/modules/packages/default.nix"; ep = "hx ~/nix/modules/packages/default.nix";
ex = "hx ~/nix/home/helix/default.nix"; ev = "hx ~/nix/home/neovim/default.nix";
efox = "hx ~/nix/home/firefox/default.nix";
}; };
history.size = 1000000; history.size = 1000000;

View file

@ -19,7 +19,6 @@
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
programs.steam.enable = true; programs.steam.enable = true;
programs.hyprland.enable = true; programs.hyprland.enable = true;
environment.sessionVariables.NIXOS_OZONE_WL = "1";
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true; programs.zsh.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes"]; nix.settings.experimental-features = [ "nix-command" "flakes"];