Compare commits

..

No commits in common. "733f09578b19faea69ff239cf4f21cb9d68342f3" and "e87963f9d7f998bb7692fc5b562a8ef1d7b5c618" have entirely different histories.

5 changed files with 4 additions and 32 deletions

View file

@ -21,12 +21,6 @@
home.sessionVariables = { home.sessionVariables = {
LD_LIBRARY_PATH = "${pkgs.libGL}/lib"; LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
}; };
nix = {
package = pkgs.nixVersions.latest;
};
home.packages = with pkgs; [ pkgs.nixVersions.latest ];
}; };
}; };
} }

View file

@ -1,9 +1,4 @@
{ { inputs, pkgs, ... }:
inputs,
pkgs,
config,
...
}:
{ {
home-manager = { home-manager = {
@ -21,7 +16,6 @@
isGnome = false; isGnome = false;
noiseSuppression.enable = true; noiseSuppression.enable = true;
isGraphical = true; isGraphical = true;
nixVersion = pkgs.lix;
}; };
/* /*
@ -36,14 +30,7 @@
LD_LIBRARY_PATH = "${pkgs.libGL}/lib"; LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
}; };
nix = { home.packages = with pkgs; [ libsForQt5.discover ];
package = pkgs.lix;
};
home.packages = with pkgs; [
pkgs.lix
libsForQt5.discover
];
}; };
}; };
} }

View file

@ -12,10 +12,4 @@
}; };
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nix = {
package = pkgs.nixVersions.latest;
};
home.packages = with pkgs; [ pkgs.nixVersions.latest ];
} }

View file

@ -61,10 +61,6 @@ with lib;
default = false; default = false;
description = "Whether to enable noise suppression or not"; description = "Whether to enable noise suppression or not";
}; };
nixVersion = mkOption {
type = types.package;
default = pkgs.nixVersions.latest;
};
}; };
nixGLPrefix = lib.mkOption { nixGLPrefix = lib.mkOption {
type = lib.types.str; type = lib.types.str;

View file

@ -24,6 +24,7 @@ in
home.packages = home.packages =
with pkgs; with pkgs;
[ [
pkgs.nixVersions.latest # because remotely invoked updates are fun ;)
up up
htop htop
rustc rustc
@ -51,7 +52,7 @@ in
(pkgs.writeShellScriptBin "yt-dlp-audio" (builtins.readFile ./../scripts/yt-dlp-audio.sh)) (pkgs.writeShellScriptBin "yt-dlp-audio" (builtins.readFile ./../scripts/yt-dlp-audio.sh))
(pkgs.writeShellScriptBin "nix-shell-init" (builtins.readFile ./../scripts/nix-shell-init.sh)) (pkgs.writeShellScriptBin "nix-shell-init" (builtins.readFile ./../scripts/nix-shell-init.sh))
(pkgs.writeShellScriptBin "http-server" '' (pkgs.writeShellScriptBin "http-server" ''
${pkgs.caddy}/bin/caddy file-server --listen :2345z ${pkgs.caddy}/bin/caddy file-server --listen :2345
'') '')
(pkgs.writeShellScriptBin "nix-build-default" '' (pkgs.writeShellScriptBin "nix-build-default" ''
nix-build -E 'with import <nixpkgs> { }; callPackage ./default.nix { }' nix-build -E 'with import <nixpkgs> { }; callPackage ./default.nix { }'