Games and command not found
This commit is contained in:
parent
49211ccdd4
commit
dbf9d04395
2 changed files with 18 additions and 1 deletions
|
@ -3,6 +3,16 @@
|
||||||
home.homeDirectory = "/home/daniel/.home";
|
home.homeDirectory = "/home/daniel/.home";
|
||||||
home.stateVersion = "23.05";
|
home.stateVersion = "23.05";
|
||||||
|
|
||||||
|
programs.nix-index = {
|
||||||
|
enable = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.pointerCursor = {
|
||||||
|
name = "Catppuccin-Mocha-Sapphire-Cursors";
|
||||||
|
package = pkgs.catppuccin-cursors.mochaSapphire;
|
||||||
|
};
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
|
|
|
@ -59,6 +59,7 @@ in
|
||||||
|
|
||||||
hardware.opengl = {
|
hardware.opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
driSupport32Bit = true;
|
||||||
driSupport = true;
|
driSupport = true;
|
||||||
|
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
|
@ -92,9 +93,11 @@ in
|
||||||
|
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
wireplumber.enable = true;
|
||||||
alsa.enable = true;
|
alsa.enable = true;
|
||||||
alsa.support32Bit = true;
|
alsa.support32Bit = true;
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
|
# pulse.support32Bit = true;
|
||||||
jack.enable = true;
|
jack.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -124,7 +127,8 @@ in
|
||||||
|
|
||||||
# Enable sound.
|
# Enable sound.
|
||||||
# sound.enable = true;
|
# sound.enable = true;
|
||||||
# hardware.pulseaudio.enable = true;
|
# hardware.pulseaudio.support32Bit = true;
|
||||||
|
hardware.pulseaudio.support32Bit = true;
|
||||||
|
|
||||||
# Enable touchpad support (enabled default in most desktopManager).
|
# Enable touchpad support (enabled default in most desktopManager).
|
||||||
# services.xserver.libinput.enable = true;
|
# services.xserver.libinput.enable = true;
|
||||||
|
@ -179,6 +183,7 @@ in
|
||||||
krita
|
krita
|
||||||
libinput
|
libinput
|
||||||
libinput-gestures
|
libinput-gestures
|
||||||
|
libnotify
|
||||||
lutris
|
lutris
|
||||||
mako
|
mako
|
||||||
mosh
|
mosh
|
||||||
|
@ -190,6 +195,7 @@ in
|
||||||
pamixer
|
pamixer
|
||||||
(pass.withExtensions (exts: [ exts.pass-otp ]))
|
(pass.withExtensions (exts: [ exts.pass-otp ]))
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
pciutils
|
||||||
playerctl
|
playerctl
|
||||||
pulseaudio
|
pulseaudio
|
||||||
pulsemixer
|
pulsemixer
|
||||||
|
@ -209,6 +215,7 @@ in
|
||||||
traceroute
|
traceroute
|
||||||
unzip
|
unzip
|
||||||
vlc
|
vlc
|
||||||
|
vulkan-tools
|
||||||
watchexec
|
watchexec
|
||||||
waybar
|
waybar
|
||||||
wget
|
wget
|
||||||
|
|
Reference in a new issue