Finer grained home-manager hosts
This commit is contained in:
+2
-10
@@ -1,5 +1,6 @@
|
||||
{ pkgs, lib, gui, gnome,
|
||||
inputs,
|
||||
host ? "most",
|
||||
...}:
|
||||
|
||||
{
|
||||
@@ -14,6 +15,7 @@
|
||||
./templates.nix
|
||||
./vim.nix
|
||||
./xonsh.nix
|
||||
./hosts/${host}
|
||||
] ++ ( if gui then [ ./gui ] else []);
|
||||
|
||||
|
||||
@@ -31,21 +33,11 @@
|
||||
]);
|
||||
};
|
||||
|
||||
home.file.".pip/pip.conf".text = (lib.strings.concatStringsSep "\n" [
|
||||
"[global]"
|
||||
"retries = 1"
|
||||
"index-url = https://pypi.python.org/simple"
|
||||
"extra-index-url ="
|
||||
" https://pypi.ivrtechnology.com/simple/"
|
||||
" https://pypidev.ivrtechnology.com/simple/"
|
||||
]);
|
||||
|
||||
home.stateVersion = "23.05";
|
||||
home.packages = with pkgs; [
|
||||
bitwarden-cli
|
||||
brew
|
||||
diffutils
|
||||
dmidecode
|
||||
findutils
|
||||
gimp
|
||||
git
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{ pkgs, lib, ...}:
|
||||
|
||||
{
|
||||
home.file.".pip/pip.conf".text = (lib.strings.concatStringsSep "\n" [
|
||||
"[global]"
|
||||
"retries = 1"
|
||||
"index-url = https://pypi.python.org/simple"
|
||||
"extra-index-url ="
|
||||
" https://pypi.ivrtechnology.com/simple/"
|
||||
" https://pypidev.ivrtechnology.com/simple/"
|
||||
]);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
# Put home configuration here that will affect most boxes
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user