chore: formatting

This commit is contained in:
notohh 2023-02-27 05:12:00 -05:00
parent 6a8f0aa5b8
commit 3e2757796e
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,5 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = [pkgs.gh]; home.packages = [pkgs.gh];
programs.git = { programs.git = {

View file

@ -17,13 +17,13 @@ imports = [
./waybar ./waybar
./wayland/hyprland ./wayland/hyprland
]; ];
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true; programs.home-manager.enable = true;
home = { home = {
username = "notoh"; username = "notoh";
homeDirectory = "/home/notoh"; homeDirectory = "/home/notoh";
stateVersion = "23.05";
packages = with pkgs; [ packages = with pkgs; [
firefox firefox
neofetch neofetch
@ -31,7 +31,6 @@ imports = [
discord discord
spotify-player spotify-player
btop btop
nvtop
obs-studio obs-studio
pavucontrol pavucontrol
unzip unzip
@ -62,6 +61,7 @@ imports = [
cava cava
hollywood hollywood
]; ];
stateVersion = "23.05";
}; };
} }