stuff
This commit is contained in:
parent
fd44d23309
commit
ee7cd4a125
2 changed files with 32 additions and 8 deletions
|
@ -16,6 +16,9 @@
|
|||
boot.loader.systemd-boot.configurationLimit = 5;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
boot.extraModulePackages = with config.boot.kernelPackages;
|
||||
[ v4l2loopback.out ];
|
||||
boot.kernelModules = [ "v4l2loopback" ];
|
||||
|
||||
networking.hostName = "nixos"; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
@ -64,6 +67,7 @@
|
|||
};
|
||||
|
||||
services.printing.enable = true;
|
||||
services.spotifyd.enable = true;
|
||||
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
|
@ -73,6 +77,7 @@
|
|||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
wireplumber.enable = true;
|
||||
};
|
||||
|
||||
# enable fish
|
||||
|
@ -82,6 +87,8 @@
|
|||
#polkit
|
||||
security.polkit.enable = true;
|
||||
|
||||
programs.steam.enable = true;
|
||||
|
||||
#users
|
||||
users.users.notoh = {
|
||||
isNormalUser = true;
|
||||
|
@ -93,27 +100,30 @@
|
|||
neovim
|
||||
neofetch
|
||||
bitwarden
|
||||
spotify
|
||||
discord
|
||||
waybar
|
||||
|
||||
spotify-tui
|
||||
spotifyd
|
||||
mpv
|
||||
ani-cli
|
||||
trackma
|
||||
# utility
|
||||
|
||||
hyprpaper
|
||||
waybar
|
||||
streamlink
|
||||
ranger
|
||||
btop
|
||||
obsidian
|
||||
lazygit
|
||||
|
||||
obs-studio
|
||||
pavucontrol
|
||||
# gaming
|
||||
steam
|
||||
wine
|
||||
lutris
|
||||
bottles
|
||||
gamescope
|
||||
|
||||
# fun stuff
|
||||
|
||||
cbonsai
|
||||
pipes-rs
|
||||
cmatrix
|
||||
|
@ -138,7 +148,17 @@
|
|||
polkit_gnome
|
||||
appimage-run
|
||||
wlogout
|
||||
wireplumber
|
||||
dunst
|
||||
appimage-run
|
||||
qt6.qtwayland
|
||||
qt5.qtwayland
|
||||
qt6.full
|
||||
qt5.full
|
||||
cmake
|
||||
meson
|
||||
python3
|
||||
python3.pkgs.pip
|
||||
];
|
||||
|
||||
system.stateVersion = "23.05"; # Did you read the comment?
|
||||
|
@ -200,5 +220,9 @@
|
|||
};
|
||||
};
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"qtwebkit-5.212.0-alpha4"
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -37,6 +37,6 @@
|
|||
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue