Initial commit
This commit is contained in:
17
features/audio.nix
Normal file
17
features/audio.nix
Normal 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
26
features/common.nix
Normal 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
11
features/gaming.nix
Normal 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
25
features/gui.nix
Normal 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
5
features/laptop.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ lib, pkgs, localPackages, ... }:
|
||||
|
||||
{
|
||||
programs.light.enable = true;
|
||||
}
|
||||
8
features/networking.nix
Normal file
8
features/networking.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ lib, pkgs, localPackages, ... }: {
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
ldns
|
||||
wireguard-tools
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user