BROKEN: Expanding desktop option

This commit is contained in:
Jurn Wubben 2025-05-24 00:03:47 +02:00
parent 562a8b7a2e
commit d0a41df000
44 changed files with 272 additions and 296 deletions

View file

@ -54,7 +54,10 @@ in {
networking.hostName = "vm";
niksos = {
desktop = true;
desktop = {
enable = true;
hyprland = true;
};
neovim = true;
};

View file

@ -13,7 +13,7 @@
# settings.ffmepg.accel = "nvenc";
settings.ffmpeg.preferredHwDevice = "/dev/dri/renderD128";
accelerationDevices = [
"/dev/dri/renderD128"
"/dev/dri/renderD128"
];
};

View file

@ -1,30 +1,34 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/33b7e681-d92a-40db-a172-b797591a1e2e";
fsType = "ext4";
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/33b7e681-d92a-40db-a172-b797591a1e2e";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/0BEA-7525";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/0BEA-7525";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
};
swapDevices = [ ];
swapDevices = [];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -13,13 +13,17 @@ in {
];
niksos = {
bluetooth = true;
fingerprint = true;
games = true;
desktop = true;
bluetooth = true;
portable = true;
neovim = true;
kde = true;
games = true;
desktop = {
enable = true;
hyprland = true;
kde = false;
};
};
home-manager.users.jsw.wayland.windowManager.hyprland.settings.monitor = ["eDP-1,2880x1920@120,0x0,1.5,vrr,1"];

View file

@ -1,4 +1,6 @@
{
#NOTE: This config serves as a list of all of the available options
imports = [
./hardware-configuration.nix
];
@ -6,9 +8,21 @@
boot.plymouth.enable = false;
services.fwupd.enable = false;
# Other stuff that's enabled by default because i'll use it but it's still bloat is (note that this list shares a lot of resources):
# - graphics drivers (~1.8gb)
# - networkmanager (~1.25gb)
# - polkit (~1.25gb)
# - other stuff.. total: 4.68gb
niksos = {
bluetooth = false;
desktop = { enable = false; hyprland = false; kde = false; };
fingerprint = false;
games = false;
graphics = { enable = false; intel = false; nvidia = false; };
neovim = false;
portable = false;
server = false;
};
#NOTE: Old info
## Other stuff that's enabled by default because i'll use it but it's still bloat is (note that this list shares a lot of resources):
## - graphics drivers (~1.8gb)
## - networkmanager (~1.25gb)
## - polkit (~1.25gb)
## - other stuff.. total: 4.68gb
}