init repos

This commit is contained in:
2026-06-19 05:47:33 +02:00
commit d5d15832f5
20 changed files with 534 additions and 0 deletions

14
modules/desktop/audio.nix Normal file
View File

@@ -0,0 +1,14 @@
{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
}

10
modules/desktop/fonts.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-color-emoji
font-awesome
nerd-fonts.jetbrains-mono
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
}

View File

@@ -0,0 +1,30 @@
{ pkgs, ... }:
{
programs.hyprland.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services.gvfs.enable = true;
services.tumbler.enable = true;
xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ];
};
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
settings.Users.HideUsers = "waha";
theme = "elegant-sddm";
};
security.polkit.enable = true;
programs.dconf.enable = true;
}

View File

@@ -0,0 +1,31 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
alacritty
fuzzel
firefox
waybar
dunst
grim
slurp
wl-clipboard
networkmanagerapplet
blueman
thunderbird
tesseract
tessen
pavucontrol
playerctl
imv
mpv
arc-theme
tela-icon-theme
lxappearance
gsettings-desktop-schemas
glib
dconf
claude-code
opencode
];
}