This commit is contained in:
albert 2023-08-24 20:43:54 +09:00
parent 925fb31cef
commit 9ecb5eec3f
6 changed files with 16 additions and 8 deletions

View file

@ -8,6 +8,7 @@ nixos-rebuild switch --flake '/etc/nixos#<HOSTNAME>'
--- ---
# To Do List # To Do List
* [ ] Learn all the nvim plugins, specifically ones dealing with tabs
* [ ] Fix cursor size on hyprland * [ ] Fix cursor size on hyprland
* [ ] Find a way to adjust window sizes with a keyboard shortcut in Hyprland * [ ] Find a way to adjust window sizes with a keyboard shortcut in Hyprland
* [ ] Try disko - [Link](https://github.com/nix-community/disko) * [ ] Try disko - [Link](https://github.com/nix-community/disko)
@ -39,7 +40,7 @@ nixos-rebuild switch --flake '/etc/nixos#<HOSTNAME>'
* [x] WINE configurations * [x] WINE configurations
* [x] btop config / theming * [x] btop config / theming
* [x] swaylock config / theming * [x] swaylock config / theming
* [x] Get function keys working (sound, brightness, etc) * [x] Get function keys working (sound, brightness, etc)216752216752216752
* [x] regreet config / theming - Icons still broken for some reason * [x] regreet config / theming - Icons still broken for some reason
* Possibly switch to tuigreet and gruv it * Possibly switch to tuigreet and gruv it
* [x] mako config / theming * [x] mako config / theming

View file

@ -5,5 +5,6 @@
./rofi-conf.nix ./rofi-conf.nix
./swaylock-conf.nix ./swaylock-conf.nix
./waybar-conf.nix ./waybar-conf.nix
./swayosd-conf.nix
]; ];
} }

View file

@ -7,11 +7,14 @@
color = "ffd20400"; color = "ffd20400";
font-size = 96; font-size = 96;
show-failed-attempts = true; show-failed-attempts = true;
effect-blur = "80x4"; effect-blur = "30x8";
# effect-vignette = "0.9:0.9"; effect-vignette = "1:1";
screenshots = true; screenshots = true;
font = "JetBrainsMono Nerd Font";
clock = true; clock = true;
timestr = "%R";
datestr = "%a, %b %d";
grace = 15; grace = 15;
indicator = true; indicator = true;
@ -52,4 +55,4 @@
text-caps-lock-color = "009ddc"; text-caps-lock-color = "009ddc";
}; };
}; };
} }

View file

@ -0,0 +1,3 @@
{ pkgs, config, ... }: {
services.swayosd.enable = true;
}

View file

@ -65,6 +65,7 @@
greetd.tuigreet # Greeter greetd.tuigreet # Greeter
phoronix-test-suite # Benchmarking software phoronix-test-suite # Benchmarking software
swayidle # Idle management daemon - Automatic lock screen swayidle # Idle management daemon - Automatic lock screen
swayosd # used for on-screen notifications for things like adjusting backlight, volume, etc
]; ];
# Enable sound with pipewire. # Enable sound with pipewire.

View file

@ -4,7 +4,7 @@
fontconfig = { fontconfig = {
defaultFonts = { defaultFonts = {
emoji = [ "Noto Color Emoji" ]; emoji = [ "Noto Color Emoji" ];
monospace = [ "JetBrainsMono Nerd Font" "Cascadia Code" "Sarasa Mono SC" ]; monospace = [ "JetBrainsMono Nerd Font" ];
sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
}; };
@ -12,11 +12,10 @@
}; };
packages = with pkgs; [ packages = with pkgs; [
cascadia-code
(nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; }) (nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; })
noto-fonts-emoji noto-fonts-emoji
sarasa-gothic sarasa-gothic
font-awesome font-awesome
]; ];
}; };
} }