Wechsel von Gnome zu Plasma KDE
This commit is contained in:
+46
-38
@@ -1,38 +1,38 @@
|
||||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
./modules/desktop/gnome.nix
|
||||
# ./modules/desktop/kde.nix
|
||||
# ./modules/desktop/hyprland.nix
|
||||
# ./modules/desktop/niri.nix
|
||||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.initrd.enable = true;
|
||||
|
||||
# LUKS Partition
|
||||
boot.initrd.luks.devices = {
|
||||
dukebook0 = {
|
||||
device = "/dev/disk/by-uuid/aaebdca2-acfb-4156-a8f7-057fd9e9e328";
|
||||
preLVM = true;
|
||||
};
|
||||
};
|
||||
|
||||
# # LVM Volume Mounts
|
||||
# fileSystems."/home/martin/Nextcloud" = {
|
||||
# device = "dev/disk/by-uuid/5142d945-7948-4bc9-85ca-7f6dc760d17a";
|
||||
# fsType = "ext4";
|
||||
# };
|
||||
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
# ./modules/desktop/gnome.nix
|
||||
./modules/desktop/kde.nix
|
||||
# ./modules/desktop/hyprland.nix
|
||||
# ./modules/desktop/niri.nix
|
||||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.initrd.enable = true;
|
||||
|
||||
# LUKS Partition
|
||||
boot.initrd.luks.devices = {
|
||||
dukebook0 = {
|
||||
device = "/dev/disk/by-uuid/aaebdca2-acfb-4156-a8f7-057fd9e9e328";
|
||||
preLVM = true;
|
||||
};
|
||||
};
|
||||
|
||||
# # LVM Volume Mounts
|
||||
# fileSystems."/home/martin/Nextcloud" = {
|
||||
# device = "dev/disk/by-uuid/5142d945-7948-4bc9-85ca-7f6dc760d17a";
|
||||
# fsType = "ext4";
|
||||
# };
|
||||
|
||||
networking.hostName = "dukebook"; # Define your hostname.
|
||||
# Pick only one of the below networking options.
|
||||
networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
@@ -41,7 +41,7 @@
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
programs.dconf.enable = true;
|
||||
programs.dconf.enable = true;
|
||||
# Configure network proxy if necessary
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||
@@ -57,7 +57,7 @@
|
||||
# Enable Gnome3 Keyring
|
||||
# services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
# Enable CUPS to print documents.2
|
||||
# Enable CUPS to print documents.2
|
||||
services.printing.enable = true;
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
@@ -74,6 +74,11 @@
|
||||
alsa.enable = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
|
||||
# Bluetooth Support
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
services.blueman.enable = true;
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
# services.xserver.libinput.enable = true;
|
||||
@@ -119,12 +124,15 @@
|
||||
pfetch
|
||||
neovim
|
||||
gnome-software
|
||||
xwayland-satellite
|
||||
parted
|
||||
vscodium
|
||||
xwayland-satellite
|
||||
parted
|
||||
vscodium
|
||||
libreoffice-fresh
|
||||
hunspell
|
||||
signal-desktop
|
||||
];
|
||||
|
||||
programs.niri.enable = true;
|
||||
programs.niri.enable = true;
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
|
||||
Reference in New Issue
Block a user