Welcome artemi

This commit is contained in:
KoenDR06 2025-11-07 16:21:45 +01:00
parent b4a0db8b6d
commit 64a92b3e87
4 changed files with 80 additions and 6 deletions

View file

@ -0,0 +1,13 @@
{...}: {
imports = [
./hardware-configuration.nix
./modules.nix
];
horseman.username = "horseman";
horseman.stateVersion = "24.11";
networking.hostName = "artemis";
networking.extraHosts = "127.0.0.1 koala.rails.local";
}

View file

@ -0,0 +1,60 @@
{...}: {
imports = [
../../modules
];
config.horseman = {
catppuccin.flavor = "macchiato";
users.default.enable = true;
base = {
nix.enable = true;
locale.enable = true;
secrets.enable = true;
};
boot = {
loader.systemd.enable = true;
greeter.greetd.enable = true;
greeter.greetd.session = "Hyprland";
};
wm.hyprland = {
enable = true;
config = {
monitors.displays = [
{
output = "eDP-1";
x = 0;
y = 0;
bar = "top";
}
];
monitors.bindWorkspaces = "interlaced";
};
};
hardware = {
audio.enable = true;
bluetooth.enable = true;
wifi.enable = true;
};
network = {
ssh.enable = true;
syncthing.enable = true;
tailscale.enable = true;
};
apps = {
dev.enable = true;
visual.enable = true;
terminal = {
enable = true;
zsh.enable = true;
};
};
};
}