Initial commit
This commit is contained in:
commit
333ecafb68
4 changed files with 168 additions and 0 deletions
36
modules/users/alisceon.nix
Normal file
36
modules/users/alisceon.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.alisceon = {
|
||||
home.stateVersion = "24.05";
|
||||
|
||||
programs.fish.enable = true;
|
||||
programs.git.enable = true;
|
||||
|
||||
programs.vscode.enable = true;
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
nativeMessagingHosts = true;
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue