chore: clean up nixos configurations
Some checks are pending
Continuous Integration / Checks (push) Waiting to run
Some checks are pending
Continuous Integration / Checks (push) Waiting to run
Consolidate nixpkgs instances into once for all x86 systems
This commit is contained in:
parent
712cca5909
commit
578d4526e5
13 changed files with 92 additions and 161 deletions
|
@ -4,6 +4,10 @@ let
|
|||
initrdHostKey = "${config.networking.hostName}-ssh_host_ed25519_key";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./server.nix
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "virtio-pci" ];
|
||||
|
||||
boot.kernelParams = [
|
||||
|
|
7
nixos/modules/profiles/home.nix
Normal file
7
nixos/modules/profiles/home.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.sharedModules = pkgs.lib.attrValues inputs.self.hmModules;
|
||||
home-manager.users.dadada = inputs.self.hmConfigurations.dadada;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue