Initial commit 🚀

This commit is contained in:
2023-10-13 15:56:14 +02:00
commit b593cdeb3e
50 changed files with 2454 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
../../base
./packages.nix
];
}

View File

@@ -0,0 +1,65 @@
{ pkgs, inputs, ... }:
{
#Overlays/Overrides
nixpkgs.overlays = [
(self: super: {
waybar = super.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
})
];
programs.direnv.enable = true;
#Packages
home.packages = with pkgs; [
betterbird
bottles
brave
btop
cliphist
foot
gamemode
gamescope
glibc
go
grim
hplipWithPlugin
inputs.maxfetch.packages.${pkgs.system}.default
inputs.orcaslicer.packages.${pkgs.system}.orca-slicer
libreoffice
lutris
mpv
neofetch
neovim
nix-prefetch-github
obs-studio
obs-studio-plugins.obs-pipewire-audio-capture
obs-studio-plugins.obs-vkcapture
obs-studio-plugins.wlrobs
pavucontrol
picard
playerctl
protontricks
protonup-qt
qbittorrent
remmina
slurp
steamtinkerlaunch
swayidle
swaylock-effects
swaynotificationcenter
swww
vlc
waybar
wine-wayland
winetricks
wl-clipboard
wlogout
wofi
xdg-utils
xdotool
xorg.xprop
xorg.xwininfo
];
}