1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/kibbeh/configuration.nix

95 lines
2.1 KiB
Nix
Raw Normal View History

2025-03-05 10:04:54 +01:00
{
config,
pkgs,
...
}:
2025-02-11 15:51:06 +01:00
{
2025-02-11 21:04:02 +01:00
imports = [
./hardware-configuration.nix
../../configs/spacetime.nix
../../configs/admin-essentials.nix
2025-12-25 14:35:28 +01:00
../../configs/keyboard
2025-02-11 21:04:02 +01:00
../../configs/sound.nix
../../configs/printing.nix
../../configs/nix.nix
../../configs/fonts.nix
2025-03-05 10:04:45 +01:00
../../configs/mycelium.nix
2025-02-11 21:04:02 +01:00
../../configs/retiolum.nix
../../configs/sshd.nix
../../configs/sudo.nix
../../configs/zsh.nix
../../configs/tor.nix
];
age.secrets = {
retiolum-rsa = {
file = ../../secrets/kibbeh-retiolum-privateKey-rsa.age;
mode = "400";
owner = "tinc-retiolum";
group = "tinc-retiolum";
};
retiolum-ed25519 = {
file = ../../secrets/kibbeh-retiolum-privateKey-ed25519.age;
mode = "400";
owner = "tinc-retiolum";
group = "tinc-retiolum";
};
};
services.gnome.gnome-keyring.enable = true;
security.pam.services.lightdm.enableGnomeKeyring = true;
2025-02-11 15:51:06 +01:00
2025-02-11 21:04:02 +01:00
services.openssh.enable = true;
2025-02-11 15:51:06 +01:00
2025-02-11 21:04:02 +01:00
networking.hostName = "kibbeh";
2025-02-11 15:51:06 +01:00
networking.networkmanager.enable = true;
2025-03-05 10:04:54 +01:00
i18n.defaultLocale = "en_DK.UTF-8";
2025-02-11 15:51:06 +01:00
services.xserver.enable = true;
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.pantheon.enable = true;
2025-02-11 21:04:02 +01:00
# services.displayManager.autoLogin.enable = true;
# services.displayManager.autoLogin.user = config.users.users.me.name;
2025-02-11 15:51:06 +01:00
2025-02-11 21:04:02 +01:00
age.secrets = {
di-fm-key.file = ../../secrets/di-fm-key.age;
2025-02-11 15:51:06 +01:00
};
2025-02-11 21:04:02 +01:00
users.users.me = {
name = "kfm";
2025-02-11 15:51:06 +01:00
isNormalUser = true;
2025-02-11 21:04:02 +01:00
description = "ि";
extraGroups = [ "networkmanager" ];
password = "hackme";
2025-02-11 15:51:06 +01:00
packages = with pkgs; [
2025-02-11 21:04:02 +01:00
# packages TODO
2025-02-11 15:51:06 +01:00
firefox
2025-02-11 21:04:02 +01:00
thunderbird
alacritty
tor-browser-bundle-bin
zathura
okular
anki-bin
libreoffice
xournalpp
jellyfin-media-player
mpv-tv
2025-02-13 19:14:55 +01:00
telegram-desktop
(mpv-radio.override { di-fm-key-file = config.age.secrets.di-fm-key.path; })
2025-02-11 21:04:02 +01:00
spotify
2025-02-11 15:51:06 +01:00
];
};
environment.systemPackages = with pkgs; [
2025-02-11 21:04:02 +01:00
htop
git
vim
2025-02-26 10:06:44 +01:00
tmux
(vim-kmein.override { colorscheme = "base16-gruvbox-dark-medium"; })
2025-02-11 15:51:06 +01:00
];
2025-02-11 21:04:02 +01:00
system.stateVersion = "23.11";
2025-02-11 15:51:06 +01:00
}