hosts/youko: init
This commit is contained in:
parent
590ccec966
commit
e2014034bb
4 changed files with 104 additions and 0 deletions
26
hosts/youko/default.nix
Normal file
26
hosts/youko/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
configurations.nixos.youko = {
|
||||
imports = [
|
||||
./disks.nix
|
||||
./hardware.nix
|
||||
];
|
||||
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
|
||||
boot = {
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.efi.canTouchEfiVariables = true;
|
||||
};
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
settei.user.config =
|
||||
{ lib, ... }:
|
||||
{
|
||||
programs.git.signing = lib.mkForce {
|
||||
key = null;
|
||||
signByDefault = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue