dotfiles/users/jan.nix

54 lines
1.0 KiB
Nix
Raw Normal View History

2024-07-18 04:08:27 +00:00
# How Jan likes his linux to be configured
{ config, ... }:
{
imports = [
2024-07-18 04:08:27 +00:00
./janMerged.nix
];
config = {
2024-07-18 04:08:27 +00:00
# State version
home.stateVersion = "24.05";
# Enabled modules
2024-07-18 04:08:27 +00:00
modules = {
# Window manager
river.enable = true;
waylock.enable = true;
# Theming
theming.enable = true;
2024-07-18 04:08:27 +00:00
# Programs
feishin.enable = true;
firefox.enable = true;
vscode.enable = true;
zathura.enable = true;
fish.enable = true;
2024-07-18 11:48:49 +00:00
winbox.enable = true;
discord.enable = true;
# Enable unfree
unfree.enable = true;
2024-07-18 04:08:27 +00:00
};
# Theme configuration
theming = let fontpkgs = config.theming.fonts.pkgs; in {
# Fonts
fonts.serif = fontpkgs."DejaVu Serif";
fonts.sansSerif = fontpkgs."DejaVu Sans";
fonts.monospace = fontpkgs."Dina";
fonts.emoji = fontpkgs."Dina";
fonts.extraFonts = [
];
# Color scheme
themes.catppuccin = {
enable = true;
flavor = "latte";
};
2024-07-18 04:08:27 +00:00
};
};
2024-07-18 04:08:27 +00:00
}