feat/nix #3

Merged
Jaaj-San merged 59 commits from feat/nix into main 2024-09-20 22:35:47 +02:00
4 changed files with 30 additions and 0 deletions
Showing only changes of commit 81ad140e73 - Show all commits

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 = .;
};
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;
} }