Compare commits

..

2 commits

Author SHA1 Message Date
Culis Gaspard
38a723941b eww: Added nixos config 2024-09-18 15:00:31 +02:00
Culis Gaspard
81ad140e73 alacritty: Fixed font config 2024-09-18 14:55:52 +02:00
4 changed files with 30 additions and 0 deletions

7
bar/default.nix Normal file
View file

@ -0,0 +1,7 @@
{
imports = [
./eww
];
}

15
bar/eww/default.nix Normal file
View file

@ -0,0 +1,15 @@
{
pkgs,
...
} : {
home.file = {
".config/eww".source = ../eww;
};
home.packages = [
pkgs.eww
];
}

View file

@ -12,4 +12,9 @@
extraConfig = builtins.readFile ./hyprland.conf; extraConfig = builtins.readFile ./hyprland.conf;
plugins = [ hy3.packages.${pkgs.system}.hy3 ]; plugins = [ hy3.packages.${pkgs.system}.hy3 ];
}; };
# bar is required
imports = [
../../bar
];
} }

View file

@ -1,4 +1,5 @@
{ {
config,
pkgs, pkgs,
... ...
} : { } : {
@ -10,6 +11,8 @@
pkgs.alacritty pkgs.alacritty
pkgs.fira-code-nerdfont pkgs.fira-code-nerdfont
]; ];
fonts.fontconfig.enable = true;
} }