add another machine, Akun

This commit is contained in:
ulic-youthlic 2025-01-19 16:10:08 +08:00
parent d159fed672
commit f36c71bd26
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
13 changed files with 415 additions and 13 deletions

View file

@ -0,0 +1,64 @@
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./stylix.nix
./users
./networking.nix
./disk-config.nix
];
youthlic = {
home-manager = {
enable = true;
unixName = "david";
hostName = "Akun";
};
i18n.enable = true;
programs = {
# dae.enable = true;
openssh.enable = true;
kanata.enable = true;
};
gui.enabled = "kde";
};
programs.gnupg.agent = {
enable = true;
};
networking.hostName = "Akun";
time.timeZone = "Asia/Shanghai";
services.printing.enable = true;
environment.systemPackages = with pkgs; [
nix-output-monitor
wget
git
vim
helix
element-desktop
discord-ptb
vlc
btop
spotify
localsend
];
environment.variables.EDITOR = "hx";
services.dbus.implementation = "broker";
boot = {
kernelPackages = pkgs.linuxPackages_zen;
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
# loader.grub = {
# efiSupport = true;
# efiInstallAsRemovable = true;
# };
};
system.stateVersion = "24.11";
}