formatting
parent
77dcda448f
commit
f2f8decfe4
|
@ -1,7 +1,8 @@
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
|
|
||||||
let
|
{
|
||||||
base = (home: {
|
environment.pathsToLink = [ "/share/zsh" ];
|
||||||
|
home-manager.users.moritz = {
|
||||||
home.packages = with pkgs; [ du-dust ];
|
home.packages = with pkgs; [ du-dust ];
|
||||||
programs = {
|
programs = {
|
||||||
zsh = {
|
zsh = {
|
||||||
|
@ -35,9 +36,5 @@ let
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
};
|
||||||
in
|
|
||||||
{
|
|
||||||
environment.pathsToLink = [ "/share/zsh" ];
|
|
||||||
home-manager.users.moritz = { ... }: (base "/home/moritz");
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
{
|
{
|
||||||
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ./firefox.nix ];
|
imports = [ ./rofi ./kitty.nix ./zathura.nix ./spotify.nix ./firefox.nix ];
|
||||||
home-manager.users.moritz.home.packages = with pkgs; [
|
home-manager.users.moritz.home.packages = with pkgs; [
|
||||||
neofetch
|
|
||||||
keepassxc
|
|
||||||
xfce.thunar
|
|
||||||
xfce.xfconf
|
|
||||||
xfce.tumbler
|
|
||||||
xfce.exo
|
|
||||||
libreoffice
|
|
||||||
signal-desktop
|
|
||||||
anki
|
anki
|
||||||
|
keepassxc
|
||||||
|
libreoffice
|
||||||
|
neofetch
|
||||||
|
signal-desktop
|
||||||
|
xfce.exo
|
||||||
|
xfce.thunar
|
||||||
|
xfce.tumbler
|
||||||
|
xfce.xfconf
|
||||||
];
|
];
|
||||||
services.gvfs = {
|
services.gvfs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -11,12 +11,5 @@ for monitor in ${monitors[@]}; do
|
||||||
end=$(expr $end + $desktops)
|
end=$(expr $end + $desktops)
|
||||||
done
|
done
|
||||||
|
|
||||||
# CONFIGURATION #
|
|
||||||
|
|
||||||
|
|
||||||
# Dracula theme #
|
# Dracula theme #
|
||||||
|
|
||||||
bspc config focused_border_color "#bd93f9"
|
bspc config focused_border_color "#bd93f9"
|
||||||
|
|
||||||
# AUTOSTART #
|
|
||||||
feh --bg-fill ~/.config/wallpaper/dracula.png
|
|
||||||
|
|
Loading…
Reference in New Issue