Add /etc/backup

This commit is contained in:
Henry Hiles 2023-07-01 18:40:55 -04:00
parent 1b7ccaf7ba
commit 5747f8c525
2 changed files with 7 additions and 7 deletions

View file

@ -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"

View file

@ -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";
};