This commit is contained in:
2024-09-12 18:44:32 +02:00
19 changed files with 147 additions and 26 deletions

View File

@@ -8,6 +8,7 @@
../../modules/system/gui/hyprland.nix
../../modules/system/gui/steam.nix
../../modules/system/gui/thunar.nix
# ../../modules/system/gui/plasma.nix
# CLI
../../modules/system/cli/common.nix
@@ -37,6 +38,7 @@
enable = true;
efiSupport = true;
device = "nodev";
configurationLimit = 32;
};
networking.hostName = "xv-laptop"; # Define your hostname.
@@ -49,6 +51,13 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
# Configure wacom tablet
hardware.opentabletdriver = {
enable = true;
};
services.libinput.enable = true;
system.stateVersion = "24.05";
}

View File

@@ -15,6 +15,7 @@
../../modules/home/cli/ssh.nix
];
options = {
host = lib.mkOption {
type = with lib.types; str;
@@ -32,7 +33,6 @@
host = "xv-laptop";
home.packages = with pkgs; [
# Desktop Applications
kdenlive
@@ -48,7 +48,7 @@
# Office
libreoffice
onlyoffice-bin
unstable.onlyoffice-bin
# Image editing
gimp
@@ -59,6 +59,9 @@
unstable.drawio
];
# Enable home-manager
programs.home-manager.enable = true;
home.stateVersion = "24.05";
};