aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-17 16:21:33 -0400
committerRosa <rosaontheweb@proton.me>2026-03-17 16:21:33 -0400
commitce19b701046c064a1eb39098d8537b2c4964a86e (patch)
tree8c42a1392d36132803a2ee4ecb4d2c9150f72296 /common
parent8848e53815fe12ffa3998c0a4bbcf2178d6b00e8 (diff)
start rewrite
Diffstat (limited to 'common')
-rw-r--r--common/core.nix2
-rw-r--r--common/pipewire.nix12
-rw-r--r--common/steam.nix11
3 files changed, 1 insertions, 24 deletions
diff --git a/common/core.nix b/common/core.nix
index 8ae8245..664239e 100644
--- a/common/core.nix
+++ b/common/core.nix
@@ -8,7 +8,7 @@
memtest86.enable = true;
};
- timeout = 3;
+ timeout = 1;
};
environment.systemPackages = with pkgs; [
diff --git a/common/pipewire.nix b/common/pipewire.nix
deleted file mode 100644
index 78007b2..0000000
--- a/common/pipewire.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, ... }:
-{
- services.pipewire = {
- enable = true;
- alsa = {
- enable = true;
- support32Bit = true;
- };
-
- pulse.enable = true;
- };
-}
diff --git a/common/steam.nix b/common/steam.nix
deleted file mode 100644
index 05d2ca6..0000000
--- a/common/steam.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ config, lib, ... }:
-{
- nixpkgs.config.allowUnfreePredicate =
- pkg:
- builtins.elem (lib.getName pkg) [
- "steam"
- "steam-unwrapped"
- ];
-
- programs.steam.enable = true;
-}