Skip to content

Commit

Permalink
added polybar
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhmancs committed Dec 24, 2024
1 parent 75b491c commit 63f7b4e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
4 changes: 2 additions & 2 deletions homes/shared/foot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ in {
word-delimiters = ",│`|:\"'()[]{}<>";
selection-target = "clipboard";
dpi-aware = true;
font = "Iosevka Nerd Font:size=9";
font-bold = "Iosevka Nerd Font:size=9";
font = "SF Compact Text Font:size=9";
font-bold = "SF Compact Text Font:size=9";
vertical-letter-offset = "-0.75";
bold-text-in-bright = "no";
};
Expand Down
6 changes: 3 additions & 3 deletions machines/milkyway/modules/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
rofi.enable = true; # application launcher
joplin-desktop.enable = true; # my favorite note taker
chromium.enable = true; # browser
firefox.enable = true; # browser
firefox.enable = false; # browser
thunderbird.enable = true; # email client
vscode.enable = true; # code editor
zathura.enable = true; # pdf reader
Expand All @@ -27,7 +27,7 @@

modules.home.programs = {
# ags.enable = true; # widgets # TODO: need to upgrade to v2
# schizofox.enable = true; # browser
schizofox.enable = true; # browser
clipboard.enable = true; # clipboard manager
hyprpaper.enable = true; # wallpaper manager
webcord.enable = true; # privacy respecting discord client
Expand All @@ -43,7 +43,7 @@
};

modules.home.gaming = {
starcitizen.enable = false; # game
starcitizen.enable = true; # game
runescape.enable = false; # game
factorio.enable = false; # game
lutris.enable = false; # game manager
Expand Down
2 changes: 1 addition & 1 deletion modules/exclusive/home-manager/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
./launchers
./media
./programs
./polybar
# ./polybar
./swaylock
./themes

Expand Down
14 changes: 9 additions & 5 deletions modules/exclusive/home-manager/gaming/starcitizen.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{ inputs, lib, osConfig, pkgs, ... }:
let
{
inputs,
lib,
osConfig,
pkgs,
...
}: let
inherit (osConfig) modules;
inherit (lib) mkIf;
gam = modules.home.gaming;
in
{
in {
config = mkIf gam.starcitizen.enable {
home.packages = [ inputs.nix-gaming.packages.${pkgs.hostPlatform.system}.star-citizen ];
home.packages = [inputs.nix-gaming.packages.${pkgs.stdenv.hostPlatform.system}.star-citizen];
};
}
3 changes: 2 additions & 1 deletion modules/roles/workstation/fonts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ in {
liberation_ttf # Liberation fonts
unifont # Unicode font
sarasa-gothic # Japanese font
(nerdfonts.override {fonts = ["LiberationMono" "FiraCode" "Iosevka" "JetBrainsMono" "NerdFontsSymbolsOnly"];})
# (inter-nerdfont.override {fonts = ["LiberationMono" "FiraCode" "Iosevka" "JetBrainsMono" "NerdFontsSymbolsOnly"];})
inter-nerdfont
noto-fonts-color-emoji # Google emoji
twemoji-color-font # Twitter emoji
openmoji-color # colorful version of openmoji
Expand Down

0 comments on commit 63f7b4e

Please sign in to comment.