add daikon
This commit is contained in:
parent
63ac881eea
commit
ca424b1174
3 changed files with 26 additions and 2 deletions
19
flake.nix
19
flake.nix
|
@ -395,6 +395,23 @@
|
||||||
modules = darwinModules [ ./nixos/hosts/mako.nix ];
|
modules = darwinModules [ ./nixos/hosts/mako.nix ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Daikon, the UndefineD test machine.
|
||||||
|
homeConfigurations.daikon = home-manager.lib.homeManagerConfiguration rec {
|
||||||
|
pkgs = import nixpkgs {
|
||||||
|
system = "aarch64-linux";
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
|
extraSpecialArgs = mkSpecialArgsHm "aarch64-linux" pkgs;
|
||||||
|
|
||||||
|
modules = [
|
||||||
|
./nixos/hosts/daikon.nix
|
||||||
|
|
||||||
|
./nixos/dotfiles/hm.nix
|
||||||
|
./nixos/packages/hm.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
# Design, our phone.
|
# Design, our phone.
|
||||||
nixOnDroidConfigurations.design = nix-on-droid.lib.nixOnDroidConfiguration rec {
|
nixOnDroidConfigurations.design = nix-on-droid.lib.nixOnDroidConfiguration rec {
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
|
@ -402,6 +419,8 @@
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
config.permittedInsecurePackages = [ "olm-3.2.16" ];
|
config.permittedInsecurePackages = [ "olm-3.2.16" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
extraSpecialArgs = mkSpecialArgsDroid "aarch64-linux" pkgs;
|
extraSpecialArgs = mkSpecialArgsDroid "aarch64-linux" pkgs;
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
|
|
5
nixos/hosts/daikon.nix
Normal file
5
nixos/hosts/daikon.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ deprekages, lib, ... }:
|
||||||
|
{
|
||||||
|
# Use a HM standalone install.
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
}
|
|
@ -14,7 +14,7 @@
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Set your time zone
|
# Set your time zone
|
||||||
time.timeZone = "America/Denver";
|
time.timeZone = "Europe/Amsterdam";
|
||||||
|
|
||||||
# Design on nix-on-droid requires a different username/dir.
|
# Design on nix-on-droid requires a different username/dir.
|
||||||
home-manager.config = {
|
home-manager.config = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue