This commit is contained in:
albert 2024-04-29 12:28:40 +09:00
parent cfe8335e1e
commit c58c8db4c4
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
4 changed files with 28 additions and 22 deletions

View file

@ -1,30 +1,32 @@
{ inputs, lib, pkgs, hostname, stateVersion, username, desktop, system, ... }: {
imports = [
# Modules
inputs.disko.nixosModules.disko
# Modules
inputs.disko.nixosModules.disko
# Services
./common/services/openssh.nix
./common/services/promtail.nix
./common/services/fail2ban.nix
./common/services/telegraf.nix
./common/services/tailscale.nix
./common/services/gnupg-agent.nix
./common/services/opensnitch.nix
# Services
./common/services/openssh.nix
./common/services/promtail.nix
./common/services/fail2ban.nix
./common/services/telegraf.nix
./common/services/tailscale.nix
./common/services/gnupg-agent.nix
./common/services/opensnitch.nix
# Software
./common/software/cli/weechat.nix
./common/software/packages.nix
# Software
./common/software/cli/weechat.nix
./common/software/packages.nix
# NixOS Modules
./common/modules/fonts.nix # Font Configs
./common/modules/networking.nix # Initial Networking configs
./common/modules/nixos.nix # NixOS related items
./common/modules/remote-builders.nix # Add remote builders
# NixOS Modules
./common/modules/fonts.nix # Font Configs
./common/modules/networking.nix # Initial Networking configs
./common/modules/nixos.nix # NixOS related items
./common/modules/remote-builders.nix # Add remote builders
./users/${username}
./hosts/${hostname}
] ++ lib.optional (builtins.isString desktop) ./common/desktops/${desktop};
./users/${username}
./hosts/${hostname}
] ++ lib.optional (builtins.isString desktop) ./common/desktops/${desktop};
programs.fish.enable = true;
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";

View file

@ -46,6 +46,8 @@
fish
];
programs.fish.enable = true;
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {

View file

@ -39,6 +39,8 @@
fish
];
programs.fish.enable = true;
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {

View file

@ -17,7 +17,7 @@ in {
++ ifExists [ "docker" ]
++ ifExists [ "podman" ]
++ ifExists [ "syncthing" ];
# shell = pkgs.fish;
shell = pkgs.fish;
# mkpasswd -m sha-512
hashedPassword = "$y$j9T$wKLsIWaA4Gf63RvjedwLJ0$EHKL6BBJV0CAxEKcHHjaBqW085KJ/MGvmbyWzmcWOy6";
packages = [ pkgs.home-manager ];