formatting and removing useless parameters
This commit is contained in:
14
modules/hosts/mobile02/default.nix
Normal file
14
modules/hosts/mobile02/default.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
self,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
flake.nixosConfigurations.mobile02 = inputs.nixpkgs.lib.nixosSystem {
|
||||
modules = with self.nixosModules; [
|
||||
desktop
|
||||
mobile02Configuration
|
||||
intelDrivers
|
||||
development
|
||||
];
|
||||
};
|
||||
}
|
||||
11
modules/hosts/mobile02/mobile02Configuration.nix
Normal file
11
modules/hosts/mobile02/mobile02Configuration.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
self,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
flake.nixosModules.mobile02Configuration = {...}: {
|
||||
networking = {
|
||||
hostName = "mobile02";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user