things
This commit is contained in:
parent
55e781a7d1
commit
84fbfad9e9
|
@ -182,16 +182,17 @@
|
||||||
networking.hostName = hostname;
|
networking.hostName = hostname;
|
||||||
networking.domain = domain;
|
networking.domain = domain;
|
||||||
networking.search = [ domain ];
|
networking.search = [ domain ];
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
self.overlays.pbsdspkgs
|
self.overlays.pbsdspkgs
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
#unstable = unstable.legacyPackages.${final.system};
|
|
||||||
unstable = import inputs.unstable {
|
unstable = import inputs.unstable {
|
||||||
inherit system;
|
inherit system;
|
||||||
config = final.pkgs.config;
|
config = final.pkgs.config;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
# This makes commandline tools like 'nix run nixpkgs#hello'
|
# This makes commandline tools like 'nix run nixpkgs#hello'
|
||||||
# and 'nix-shell -p hello' use the same channel as system was built with
|
# and 'nix-shell -p hello' use the same channel as system was built with
|
||||||
nix.registry.nixpkgs.flake = inputs.nixpkgs;
|
nix.registry.nixpkgs.flake = inputs.nixpkgs;
|
||||||
|
@ -312,7 +313,7 @@
|
||||||
#pdoc3-docs = (pkgs.callPackage ./pkgs/pdocs.nix {}).pdocs3;
|
#pdoc3-docs = (pkgs.callPackage ./pkgs/pdocs.nix {}).pdocs3;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
wl-clipboard-timeout = ./overlays/wl-clipboard-timeout.nix;
|
wl-clipboard-timeout = import ./overlays/wl-clipboard-timeout.nix;
|
||||||
default = self.overlays.pbsdspkgs;
|
default = self.overlays.pbsdspkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,10 @@
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery
|
networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery
|
||||||
|
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.pbsds.v4l2-play
|
||||||
|
];
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
/**/
|
/**/
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
|
@ -38,6 +38,11 @@
|
||||||
else
|
else
|
||||||
alias clip="wl-copy --trim-newline --type text/plain";
|
alias clip="wl-copy --trim-newline --type text/plain";
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
nix-prefetch-sri() {
|
||||||
|
url="$1"; shift
|
||||||
|
nix hash to-sri --type sha256 "$@" "$(nix-prefetch-url "$url")"
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
Loading…
Reference in New Issue