28 lines
380 B
Nix
28 lines
380 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./eww.nix
|
|
./niri.nix
|
|
];
|
|
|
|
home.username = "floppy";
|
|
home.homeDirectory = "/home/floppy";
|
|
home.stateVersion = "26.05"; # nicht ändern nach erstem Setup
|
|
|
|
home.packages = with pkgs; [
|
|
thunderbird
|
|
vesktop
|
|
|
|
|
|
eww
|
|
mako
|
|
wl-clipboard
|
|
grim
|
|
slurp
|
|
swww
|
|
brightnessctl
|
|
playerctl
|
|
];
|
|
}
|