add nix files

This commit is contained in:
2026-06-25 17:24:09 +02:00
parent 0bf10bdf85
commit 637a3ca3a2
6 changed files with 486 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{ pkgs, ... }:
let
in
{
home.username = "user";
home.homeDirectory = "/home/user";
home.packages = with pkgs; [
hyprland
fzf
eza
nnn
];
wayland.windowManager.hyprland = {
enable = true;
};
gtk = {
enable = true;
theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
};
home.stateVersion = "26.05";
}