flake/users/leeuwarden/home-manager.nix

32 lines
876 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
home-manager.users.leeuwarden = { pkgs, ... }: {
home.packages = with pkgs; [
# Begin packages and options
2023-02-02 03:25:08 +01:00
alacritty
kitty
];
# Need to enable home.stateVersion for it to work correctly:
home.stateVersion = "22.05";
# Begin configuration or script declarations
home.file = {
2023-02-09 06:38:12 +01:00
# Alacritty
".config/alacritty/alacritty.yml".text = ''
{window: {opacity: 0.8}, font: {normal: {family: tamsyn, style: Regular}}}
'';
2023-02-02 03:25:08 +01:00
2023-02-09 06:38:12 +01:00
# Bash
".bashrc".source = ../../config/.bashrc;
# Dunst
".config/dunst/dunstrc".source = ../../config/dunstrc;
# Kitty
2023-02-02 03:25:08 +01:00
".config/kitty/kitty.conf".source = ../../config/kitty.conf;
2023-02-09 06:38:12 +01:00
# Waybar
".config/waybar/config".source = ../../config/waybar/config;
};
};
}