collect graphical interface code

This commit is contained in:
Osman Faruk Bayram 2025-01-13 23:49:55 +03:00
parent 4bdb9e5fe6
commit 97437b0c3c
5 changed files with 68 additions and 67 deletions

View file

@ -46,17 +46,6 @@ in {
# Enable networking
networking.networkmanager.enable = true;
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable sound with pipewire.
services.pulseaudio.enable = false;
security.rtkit.enable = true;
@ -79,19 +68,9 @@ in {
description = "osbm";
extraGroups = ["networkmanager" "wheel" "docker"];
packages = with pkgs; [
kdePackages.kate
vscode
discord # discord sucks
alacritty
obsidian
mpv
libreoffice
blender
gimp
kitty
obs-studio
audacity
qbittorrent
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPfnV+qqUCJf92npNW4Jy0hIiepCJFBDJHXBHnUlNX0k"
];
};

View file

@ -77,17 +77,6 @@ in {
package = config.boot.kernelPackages.nvidiaPackages.beta;
};
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable sound with pipewire.
services.pulseaudio.enable = false;
security.rtkit.enable = true;
@ -135,20 +124,6 @@ in {
description = "osbm";
extraGroups = ["networkmanager" "wheel" "docker"];
packages = with pkgs; [
kdePackages.kate
vscode
discord # discord sucks
alacritty
obsidian
mpv
libreoffice
blender
gimp
kitty
obs-studio
audacity
qbittorrent
prismlauncher
];
};
bayram = {
@ -157,10 +132,6 @@ in {
initialPassword = "changeme";
extraGroups = ["networkmanager"];
packages = with pkgs; [
vlc
ungoogled-chromium
prismlauncher
qbittorrent
];
};
};

View file

@ -20,7 +20,7 @@
tlrc
wakeonlan
# neovim
ani-cli
btop
pciutils
nodePackages.npm
@ -48,16 +48,6 @@
comma
];
programs.steam = {
enable = true;
# Open ports in the firewall for Steam Remote Play
remotePlay.openFirewall = true;
# Open ports in the firewall for Source Dedicated Server
dedicatedServer.openFirewall = true;
# Open ports in the firewall for Steam Local Network Game Transfers
localNetworkGameTransfers.openFirewall = true;
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;

View file

@ -0,0 +1,58 @@
{
pkgs,
lib,
config,
...
}: {
options = {
enableKDE = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable KDE Plasma Desktop Environment with my favorite packages";
};
};
config = lib.mkMerge [
(lib.mkIf config.enableKDE {
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
# Enable CUPS to print documents.
services.printing.enable = true;
environment.systemPackages = with pkgs; [
vscode
discord # discord sucks
alacritty
obsidian
mpv
libreoffice
blender
gimp
kitty
obs-studio
audacity
qbittorrent
ani-cli
prismlauncher
qbittorrent
];
programs.steam = {
enable = true;
# Open ports in the firewall for Steam Remote Play
remotePlay.openFirewall = true;
# Open ports in the firewall for Source Dedicated Server
dedicatedServer.openFirewall = true;
# Open ports in the firewall for Steam Local Network Game Transfers
localNetworkGameTransfers.openFirewall = true;
};
})
];
}

View file

@ -2,12 +2,15 @@ let
ymir = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHxc1ycxtzO2u4bHas71pi5CpR8Zzcj6GXjx1lLWMOHq";
tartarus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMxbIyQnQFA1RFQKH4eHHWcT7Z0tCumerCsRMjlHgSPd";
osbm = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPfnV+qqUCJf92npNW4Jy0hIiepCJFBDJHXBHnUlNX0k";
machines = [
ymir
tartarus
];
in {
"network-manager.age".publicKeys = machines;
"ssh-key-private.age".publicKeys = machines;
"ssh-key-public.age".publicKeys = machines;
"network-manager.age".publicKeys = machines ++ [osbm];
"ssh-key-private.age".publicKeys = machines ++ [osbm];
"ssh-key-public.age".publicKeys = machines ++ [osbm];
}