meow
This commit is contained in:
parent
93a675c06a
commit
9ca7a8d8f6
20 changed files with 631 additions and 194 deletions
|
|
@ -15,6 +15,27 @@ in
|
|||
xyno.cli.starship.enable = true;
|
||||
security.sudo.enable = false;
|
||||
|
||||
# Opitionally
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
# i18n.extraLocales = ["de_DE.UTF-8"];
|
||||
i18n.extraLocaleSettings = {
|
||||
LC_CTYPE = "en_US.UTF8";
|
||||
LC_ADDRESS = "de_DE.UTF-8";
|
||||
LC_MEASUREMENT = "de_DE.UTF-8";
|
||||
LC_MESSAGES = "en_US.UTF-8";
|
||||
LC_MONETARY = "de_DE.UTF-8";
|
||||
LC_NAME = "de_DE.UTF-8";
|
||||
LC_NUMERIC = "en_US.UTF-8";
|
||||
LC_PAPER = "de_DE.UTF-8";
|
||||
LC_TELEPHONE = "de_DE.UTF-8";
|
||||
LC_TIME = "de_DE.UTF-8";
|
||||
LC_COLLATE = "de_DE.UTF-8";
|
||||
};
|
||||
home-manager.users.xyno.home.sessionVariables.LOCALE_ARCHIVE_2_27 =
|
||||
lib.mkForce "/run/current-system/sw/lib/locale/locale-archive";
|
||||
home-manager.users.xyno.systemd.user.sessionVariables.LOCALE_ARCHIVE_2_27 =
|
||||
lib.mkForce "/run/current-system/sw/lib/locale/locale-archive";
|
||||
|
||||
nix.settings = {
|
||||
substituters = [
|
||||
"https://cache.lix.systems"
|
||||
|
|
@ -51,6 +72,13 @@ in
|
|||
enable = true;
|
||||
};
|
||||
|
||||
services.pcscd.enable = true;
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
# pinentrywlavor = "curses";
|
||||
# enableSSHSupport = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
jq
|
||||
fd
|
||||
|
|
@ -80,7 +108,7 @@ in
|
|||
programs.mosh.enable = true;
|
||||
environment.variables.EDITOR = "hx";
|
||||
environment.variables.VISUAL = "hx";
|
||||
environment.variables.PAGER= "moar";
|
||||
environment.variables.PAGER = "moar";
|
||||
|
||||
environment.shellAliases = {
|
||||
l = "ls -alh";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue