did some stuff + nix flake works

This commit is contained in:
2026-06-18 20:38:06 -05:00
parent d0f844a453
commit a8a2338388
7 changed files with 33 additions and 9 deletions
-9
View File
@@ -1,9 +0,0 @@
{ config, pkgs, ... }:
{
programs.hyprland = {
enable = true;
withUWSM = false;
xwayland.enable = true;
};
}
View File
View File
+2
View File
@@ -9,6 +9,7 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
../../modules/virtualization ../../modules/virtualization
../../modules/desktop/plasma
]; ];
boot = { boot = {
@@ -60,6 +61,7 @@
ghostty ghostty
starship starship
tmux tmux
mpv
zoxide zoxide
fd fd
ripgrep ripgrep
+22
View File
@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
hyprland
quickshell
hyprlock
mpvpaper
hyprsunset
hyprpicker
hyprpolkitagent
hyprshot
];
programs.hyprland.enable = true;
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
}
# Fingerprint
services.fprintd.enable = true;
}
+9
View File
@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services = {
desktopManager.plasma6.enable = true;
displayManager.plasma-login-manager.enable = true;
};
services.fprintd.enable = true;
}