mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-09 11:09:24 +01:00
Compare commits
No commits in common. "733f09578b19faea69ff239cf4f21cb9d68342f3" and "e87963f9d7f998bb7692fc5b562a8ef1d7b5c618" have entirely different histories.
733f09578b
...
e87963f9d7
5 changed files with 4 additions and 32 deletions
|
@ -21,12 +21,6 @@
|
|||
home.sessionVariables = {
|
||||
LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
|
||||
};
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixVersions.latest;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [ pkgs.nixVersions.latest ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{ inputs, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager = {
|
||||
|
@ -21,7 +16,6 @@
|
|||
isGnome = false;
|
||||
noiseSuppression.enable = true;
|
||||
isGraphical = true;
|
||||
nixVersion = pkgs.lix;
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -36,14 +30,7 @@
|
|||
LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
|
||||
};
|
||||
|
||||
nix = {
|
||||
package = pkgs.lix;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
pkgs.lix
|
||||
libsForQt5.discover
|
||||
];
|
||||
home.packages = with pkgs; [ libsForQt5.discover ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,10 +12,4 @@
|
|||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixVersions.latest;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [ pkgs.nixVersions.latest ];
|
||||
}
|
||||
|
|
|
@ -61,10 +61,6 @@ with lib;
|
|||
default = false;
|
||||
description = "Whether to enable noise suppression or not";
|
||||
};
|
||||
nixVersion = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.nixVersions.latest;
|
||||
};
|
||||
};
|
||||
nixGLPrefix = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
|
|
|
@ -24,6 +24,7 @@ in
|
|||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
pkgs.nixVersions.latest # because remotely invoked updates are fun ;)
|
||||
up
|
||||
htop
|
||||
rustc
|
||||
|
@ -51,7 +52,7 @@ in
|
|||
(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 "http-server" ''
|
||||
${pkgs.caddy}/bin/caddy file-server --listen :2345z
|
||||
${pkgs.caddy}/bin/caddy file-server --listen :2345
|
||||
'')
|
||||
(pkgs.writeShellScriptBin "nix-build-default" ''
|
||||
nix-build -E 'with import <nixpkgs> { }; callPackage ./default.nix { }'
|
||||
|
|
Loading…
Reference in a new issue