foo
This commit is contained in:
@@ -3,9 +3,14 @@ let
|
||||
rofiLaunchers = import ../../../pkgs/rofi-launchers/package.nix { };
|
||||
in
|
||||
{
|
||||
imports = [ ./rofi.nix ];
|
||||
imports = [
|
||||
./rofi.nix
|
||||
./dunst.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [ hyprcursor ];
|
||||
home.packages = with pkgs; [
|
||||
hyprcursor
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.dunst = {
|
||||
enable = true;
|
||||
catppuccin = true;
|
||||
};
|
||||
}
|
||||
@@ -1,4 +1,9 @@
|
||||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [ rustup ];
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
rustup
|
||||
bacon
|
||||
libgcc
|
||||
];
|
||||
home.sessionPath = [ "\${CARGO_HOME:-~/.cargo}/bin" ];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user