mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
Build-breaking fixes: - kibbeh: remove imports of deleted admin-essentials, nix, zsh configs (all provided by niphas via profiles.default + profiles.desktop) - tabula, tahina: remove imports of deleted admin-essentials, nix configs (provided by niphas via profiles.default) - zaatar: remove import of deleted tmux config (provided by niphas via profiles.default) Dead code removal: - flake.nix: remove nixosModules.zsh-kmein (referenced deleted config/zsh.nix) - flake.nix: remove unused wallpapers input - packages/gpt.nix, hora.nix, k-lock.nix: orphaned, not in overlay or referenced - configs/hledger.nix: remove hora reference (package deleted)
75 lines
1.3 KiB
Nix
75 lines
1.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../configs/spacetime.nix
|
|
../../configs/retiolum.nix
|
|
../../configs/sshd.nix
|
|
];
|
|
|
|
age.secrets = {
|
|
retiolum-rsa = {
|
|
file = ../../secrets/tabula-retiolum-privateKey-rsa.age;
|
|
mode = "400";
|
|
owner = "tinc-retiolum";
|
|
group = "tinc-retiolum";
|
|
};
|
|
retiolum-ed25519 = {
|
|
file = ../../secrets/tabula-retiolum-privateKey-ed25519.age;
|
|
mode = "400";
|
|
owner = "tinc-retiolum";
|
|
group = "tinc-retiolum";
|
|
};
|
|
};
|
|
|
|
services.libinput.enable = true;
|
|
|
|
users.users.xenos = {
|
|
name = "xenos";
|
|
password = "xenos";
|
|
isNormalUser = true;
|
|
extraGroups = [ "networkmanager" ];
|
|
};
|
|
|
|
services.displayManager = {
|
|
autoLogin = {
|
|
enable = true;
|
|
user = "xenos";
|
|
};
|
|
};
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
desktopManager.lxqt.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.libreoffice
|
|
pkgs.gimp
|
|
pkgs.inkscape
|
|
pkgs.firefox
|
|
pkgs.pidgin
|
|
pkgs.git
|
|
pkgs.vim
|
|
];
|
|
|
|
networking = {
|
|
useDHCP = false;
|
|
interfaces = {
|
|
enp0s4.useDHCP = true;
|
|
wlp2s0.useDHCP = true;
|
|
};
|
|
retiolum = pkgs.lib.niveum.retiolumAddresses.tabula;
|
|
hostName = "tabula";
|
|
};
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
system.stateVersion = "21.11";
|
|
}
|