flake/users/zonsopkomst/home-manager.nix

42 lines
898 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2023-02-08 20:42:53 +01:00
home-manager.users.zonsopkomst = { pkgs, ... }: {
home.packages = with pkgs; [
2023-02-09 06:38:12 +01:00
alacritty
cmatrix
dconf2nix
dunst
#eww
hyprpaper
kitty
ranger
slurp # screenshot
speedcrunch
waybar
wofi
pdfarranger
];
2023-02-09 06:38:12 +01:00
home.stateVersion = "22.11";
2023-02-09 06:38:12 +01:00
home.file = {
2023-02-08 20:42:53 +01:00
# Alacritty
".config/alacritty/alacritty.yml".text = ''
{window: {opacity: 0.8}, font: {normal: {family: tamsyn, style: Regular}}}
'';
2023-02-09 06:38:12 +01:00
# Bash
".bashrc".source = ../../config/.bashrc;
2023-02-08 20:42:53 +01:00
# Dunst
".config/dunst/dunstrc".source = ../../config/dunstrc;
# Kitty
2023-02-02 02:28:02 +01:00
".config/kitty/kitty.conf".source = ../../config/kitty.conf;
2023-02-08 20:42:53 +01:00
# Waybar
2023-02-09 06:38:12 +01:00
".config/waybar/config".source = ../../config/waybar/config;
};
};
}