Initial commit

This commit is contained in:
2024-05-29 15:24:31 -05:00
commit a0c6081818
31 changed files with 1392 additions and 0 deletions

17
features/audio.nix Normal file
View File

@@ -0,0 +1,17 @@
{ lib, pkgs, localPackages, ... }: {
environment.systemPackages = with pkgs; [
pulseaudio
pavucontrol
feishin
easyeffects
helvum
];
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
}

26
features/common.nix Normal file
View File

@@ -0,0 +1,26 @@
{ lib, pkgs, localPackages, ... }: {
imports = [];
environment.systemPackages = with pkgs; [
curl
wget
git
killall
vim
eza
ripgrep
fzf
ncdu
btop
nil
];
programs.neovim = {
enable = true;
defaultEditor = true;
};
programs.fish.enable = true;
}

11
features/gaming.nix Normal file
View File

@@ -0,0 +1,11 @@
{ lib, pkgs, localPackages, ... }: {
environment.systemPackages = with pkgs; [
protonup-qt
vesktop
];
programs.steam = {
enable = true;
gamescopeSession.enable = true;
};
}

25
features/gui.nix Normal file
View File

@@ -0,0 +1,25 @@
{ lib, pkgs, localPackages, ... }: {
environment.systemPackages = with pkgs; with localPackages.x86_64-linux; [
wl-clipboard
grim
slurp
swaybg
waybar
alacritty
kickoff
kickoff-dot-desktop
wayland-pipewire-idle-inhibit
firefox
mpv
];
programs.sway.enable = true;
programs.thunar.enable = true;
xdg.portal.wlr.enable = true;
fonts.packages = with pkgs; [
font-awesome
];
}

5
features/laptop.nix Normal file
View File

@@ -0,0 +1,5 @@
{ lib, pkgs, localPackages, ... }:
{
programs.light.enable = true;
}

8
features/networking.nix Normal file
View File

@@ -0,0 +1,8 @@
{ lib, pkgs, localPackages, ... }: {
environment.systemPackages = with pkgs; [
ldns
wireguard-tools
];
}