Compare commits

...

2 commits

Author SHA1 Message Date
e3e37a87ac
use more of hypr tools 2024-03-24 14:26:30 -05:00
1754c2cb69
refactor boot 2024-03-24 12:27:14 -05:00
2 changed files with 10 additions and 7 deletions

View file

@ -42,10 +42,10 @@ in {
networking.hostName = "othalan"; networking.hostName = "othalan";
time.timeZone = "US/Central"; time.timeZone = "US/Central";
boot.loader.systemd-boot.enable = true; boot.loader = {
boot.loader.systemd-boot.consoleMode = "max"; systemd-boot ={ enable = true; consoleMode = "max";};
boot.loader.efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
# boot.kernelPackages = pkgs.linuxPackages_latest; };
# don't delete this you foo bar # don't delete this you foo bar
system.stateVersion = "23.11"; # Did you read the comment? system.stateVersion = "23.11"; # Did you read the comment?

View file

@ -20,11 +20,9 @@ in
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
swayidle
wlr-randr wlr-randr
kanshi kanshi
lock
brightnessctl brightnessctl
udiskie udiskie
eww eww
@ -35,12 +33,17 @@ in
# utils # utils
grimblast grimblast
ksnip
wl-clipboard wl-clipboard
rofi-wayland rofi-wayland
pavucontrol pavucontrol
catppuccin-cursors.mochaDark catppuccin-cursors.mochaDark
hyprpaper
#hypr ecosystem
hyprlock
hypridle
swww swww
]; ];