nix-conf/systems/kamimusubi/default.nix

53 lines
1,022 B
Nix
Raw Normal View History

2024-01-11 00:12:16 +01:00
{ config, pkgs, lib, ... }:
2024-01-10 19:51:13 +01:00
{
jopejoe1 = {
audio = {
enable = true;
};
local.enable = true;
nix.enable = true;
plasma6.enable = true;
overlays.enable = true;
2024-01-13 18:01:23 +01:00
user = {
jopejoe1.enable = true;
root.enable = true;
};
2024-01-11 00:19:11 +01:00
ssh.enable = true;
2024-01-10 19:51:13 +01:00
};
networking = {
2024-01-11 00:12:16 +01:00
wireless.enable = lib.mkForce false;
2024-01-10 19:51:13 +01:00
};
time.timeZone = "Europe/Berlin";
environment.systemPackages = with pkgs; [
# Calamares for graphical installation
libsForQt5.kpmcore
calamares-nixos
(pkgs.makeAutostartItem { name = "io.calamares.calamares"; package = pkgs.calamares-nixos; })
calamares-nixos-extensions
# Get list of locales
glibcLocales
# Theming
catppuccin-kvantum
catppuccin-kde
catppuccin-gtk
tela-icon-theme
];
i18n.supportedLocales = [ "all" ];
2024-01-11 00:12:16 +01:00
services.openssh.settings.PermitRootLogin = lib.mkForce "yes";
2024-01-10 19:51:13 +01:00
programs = {
xwayland.enable = true;
kdeconnect.enable = true;
};
console = {
enable = true;
};
}