This commit is contained in:
alisceon 2025-07-21 20:58:31 +02:00
parent e03aa6c486
commit 2acc12b55c
2 changed files with 37 additions and 12 deletions

50
home/users/alisceon.nix Normal file
View file

@ -0,0 +1,50 @@
{ pkgs, ... }: {
home.username = "alisceon"
home.homeDirectory = "/home/alisceon"
home.stateVersion = "24.05";
nixpkgs.config.allowUnfree = true;
security.rtkit.enable = true;
services.gnome.gnome-keyring.enable = true;
environment.variables.EDITOR = "nano";
nix.settings.auto-optimise-store = true;
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
programs.fish.enable = true;
programs.git.enable = true;
programs.vscode.enable = true;
programs.firefox = {
enable = true;
nativeMessagingHosts = [
pkgs.gnome-browser-connector
];
};
programs.obsidian.enable = true;
programs.bat.enable = true;
programs.alacritty = {
enable = true;
settings.font.normal.family = "FiraCode Nerd Font";
};
home.packages = with pkgs; [
signal-desktop
discord
eza
fd
ripgrep
];
xdg.enable = true;
xdg.userDirs.enable = true;
xdg.mime.enable = true;
}