summaryrefslogtreecommitdiff
path: root/hosts/ades/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/ades/common.nix')
-rw-r--r--hosts/ades/common.nix81
1 files changed, 0 insertions, 81 deletions
diff --git a/hosts/ades/common.nix b/hosts/ades/common.nix
deleted file mode 100644
index e815a3b..0000000
--- a/hosts/ades/common.nix
+++ /dev/null
@@ -1,81 +0,0 @@
-{ inputs, lib, pkgs, ... }:
-
-let
- blender-bin = inputs.blender-bin.
- packages.x86_64-linux;
-in
-{
- imports = [
- ./hardware.nix
- ];
-
- this.pc.enable = true;
- this.gui.enable = true;
-
- this.locales.default = "us";
-
- time.timeZone = "America/Chicago";
-
- this.sets = {
- arch.tools = true;
- cli.tools.full = true;
- gui.tools.full = true;
- gui.fonts = true;
- net.tools.minimal = true;
- sound.tools = true;
- sys.tools = true;
- };
- environment.systemPackages = with pkgs; [
- emacs
- awesome
- jre
- rxvt-unicode
- nethack
- sil-q
- ppsspp
- wesnoth
- luanti
- gzdoom
- teeworlds
- superTuxKart
- mindustry
- shattered-pixel-dungeon
- bzflag
- xonotic-glx
- mgba
- taisei
- unvanquished
- adwaita-icon-theme
- arc-theme
- arc-icon-theme
- blender-bin.blender_3_6
- zeroad
- ];
-
- programs.firefox = {
- enable = true;
- package = pkgs.firefox-esr;
- } //
- import ./firefox-prefs.nix {};
-
- services.xserver.enable = true;
- environment.etc = {
- "X11/xinit/xinitrc" = {
- source = ./xinitrc;
- mode = "755";
- };
- "X11/Xresources".source = ./Xresources;
- "xdg/awesome/rc.lua".source = ./awesome.lua;
- "xdg/gtk-3.0/settings.ini".source = ./gtkrc-3.ini;
- };
-
- services.joycond.enable = true;
-
- boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
-
- this.hosts = {
- mine = true;
- };
-
- system.stateVersion = "24.11";
-}