Working config (until now)

This commit is contained in:
2025-05-05 21:53:36 +02:00
parent 516d786c1b
commit fa8f769068
16 changed files with 297 additions and 69 deletions

View File

@@ -4,5 +4,5 @@
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 10;
boot.initrd.luks.devices."luks-332a07bd-65fb-4d91-91ba-fe3f594063b1".device = "/dev/disk/by-uuid/332a07bd-65fb-4d91-91ba-fe3f594063b1";
boot.kernelPackages = pkgs.linuxPackages_zen;
boot.kernelPackages = pkgs.linuxPackages_latest;
}

8
modules/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ ... }:
{
imports = [
./boot.nix
./nvidia.nix
./services.nix
];
}

View File

@@ -1,11 +1,33 @@
{ pkgs, ... }:
{
services.flatpak.enable = true;
services.xserver.videoDrivers = ["nvidia"];
services.xserver.enable = true;
services.flatpak.enable = true;
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
services.displayManager.sddm.wayland.enable = true;
# services.xserver.displayManager.gdm.enable = true;
# services.xserver.desktopManager.gnome.enable = true;
# environment.gnome.excludePackages = (with pkgs; [
# atomix # puzzle game
# cheese # webcam tool
# epiphany # web browser
# evince # document viewer
# geary # email reader
# gedit # text editor
# gnome-characters
# gnome-music
# gnome-photos
# gnome-terminal
# gnome-tour
# hitori # sudoku game
# iagno # go game
# tali # poker game
# totem # video player
# ]);
# Configure keymap in X11
services.xserver.xkb = {

View File

@@ -1,34 +0,0 @@
{ pkgs, config, ... }:
{
# Currently trying to get rid of stylix
# stylix.enable = false;
# stylix.image = pkgs.fetchurl {
# url = "https://wallpaperaccess.com/full/4268145.jpg";
# sha256 = "06c8jmm7m0n4xlfki8sx6msdjjjbyydpyxs4k71d1lxn20ga2zph";
# };
# stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
# stylix.cursor.package = pkgs.bibata-cursors;
# stylix.cursor.name = "Bibata-Modern-Classic";
# stylix.cursor.size = 24;
# stylix.fonts = {
# monospace = {
# package = pkgs.nerd-fonts.jetbrains-mono;
# name = "JetBrainsMono Nerd Font";
# };
# sansSerif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Sans";
# };
# serif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Serif";
# };
# sizes = {
# terminal = 16;
# desktop = 10;
# popups = 10;
# applications = 10;
# };
# };
# stylix.polarity = "dark";
}