complete refactor of packages and options

This commit is contained in:
stitchy 2024-03-27 03:47:54 +00:00
parent 16fb30026c
commit a2f3b33514
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
12 changed files with 328 additions and 297 deletions

View file

@ -1,7 +1,7 @@
{ config, pkgs, lib, ... }:
{
imports = [ ../default.nix ];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem ( lib.getName pkg) [
"osu-lazer"
@ -12,15 +12,15 @@
"nvidia-settings"
"cudatoolkit"
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
hardware.steam-hardware.enable = true;
programs = {
firefox.enable = true;
hyprland.enable = true;
openvpn3.enable = true;
steam = {
enable = true;
remotePlay.openFirewall = true;
};
};
services = {
@ -43,8 +43,6 @@
security.pam.services.swaylock = {};
hardware.bluetooth.enable = true;
users.users.stitchynyan = {
isNormalUser = true;
shell = pkgs.zsh;