From 5747f8c5250b62d23c3c4cb53c543a260b8aad09 Mon Sep 17 00:00:00 2001 From: Henry Hiles Date: Sat, 1 Jul 2023 18:40:55 -0400 Subject: [PATCH] Add /etc/backup --- flake.nix | 2 +- quadraticpc/configuration.nix | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index b9f793c..f8fa62c 100755 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ system = hostname: nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = {inherit inputs;}; + specialArgs = {inherit inputs; inherit self;}; modules = [ "${self}/${hostname}/configuration.nix" diff --git a/quadraticpc/configuration.nix b/quadraticpc/configuration.nix index 0a0b4f8..3de89cc 100755 --- a/quadraticpc/configuration.nix +++ b/quadraticpc/configuration.nix @@ -91,12 +91,12 @@ programs = { steam = { enable = true; - package = pkgs.symlinkJoin { - name = pkgs.steam.name; - paths = [pkgs.steam]; - buildInputs = [pkgs.makeWrapper]; - postBuild = ''wrapProgram $out/bin/steam --add-flags "-gamepadui"''; - }; + # package = pkgs.symlinkJoin { + # name = pkgs.steam.name; + # paths = [pkgs.steam]; + # buildInputs = [pkgs.makeWrapper]; + # postBuild = ''wrapProgram $out/bin/steam --add-flags "-gamepadui"''; + # }; }; fish.interactiveShellInit = "neowofetch"; };