28 lines
616 B
Nix
28 lines
616 B
Nix
{
|
|
hostname = "nixos";
|
|
username = "biscuit";
|
|
timezone = "America/Chicago";
|
|
|
|
vpnEnable = true;
|
|
vpnSecretFile = "/home/biscuit/Wireguard/secret";
|
|
|
|
allowUnfree = true;
|
|
|
|
termFont = "Monolisa"; # e.g., JetBrainsMono Nerd Font
|
|
|
|
shellAliases = {
|
|
ll = "ls -l";
|
|
upd = "sudo nixos-rebuild switch --flake ~/Nixos/#desktop";
|
|
hupd = "home-manager switch --flake ~/Nixos/#desktop";
|
|
agu = "pkill gjs & ags run ~/Nixos/pkgs/ags/biscuit/app.ts & disown (jobs -p) &";
|
|
neo = "nix run github:fred-drake/neovim#";
|
|
};
|
|
|
|
apps = pkgs:
|
|
with pkgs; [
|
|
delfin
|
|
];
|
|
|
|
touchpadSupport = false;
|
|
}
|