formatting and removing useless parameters
This commit is contained in:
@@ -4,10 +4,7 @@
|
|||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
flake.nixosModules.kitty = moduleWithSystem (
|
flake.nixosModules.kitty = moduleWithSystem (
|
||||||
{
|
{self'}: {
|
||||||
pkgs,
|
|
||||||
self',
|
|
||||||
}: {
|
|
||||||
environment.systemPackages = with self'.packages; [
|
environment.systemPackages = with self'.packages; [
|
||||||
kitty
|
kitty
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
self,
|
|
||||||
inputs,
|
inputs,
|
||||||
moduleWithSystem,
|
moduleWithSystem,
|
||||||
...
|
...
|
||||||
|
|||||||
@@ -6,10 +6,10 @@
|
|||||||
flake.nixosConfigurations.HACKSTATION = inputs.nixpkgs.lib.nixosSystem {
|
flake.nixosConfigurations.HACKSTATION = inputs.nixpkgs.lib.nixosSystem {
|
||||||
modules = with self.nixosModules; [
|
modules = with self.nixosModules; [
|
||||||
desktop
|
desktop
|
||||||
|
hackstationConfiguration
|
||||||
amdDrivers
|
amdDrivers
|
||||||
youtube
|
youtube
|
||||||
development
|
development
|
||||||
hackstationConfiguration
|
|
||||||
bottles
|
bottles
|
||||||
gaming
|
gaming
|
||||||
davinci
|
davinci
|
||||||
|
|||||||
@@ -3,9 +3,10 @@
|
|||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
flake.nixosModules.hackstationConfiguration = {pkgs, ...}: {
|
flake.nixosModules.hackstationConfiguration = {...}: {
|
||||||
networking = {
|
networking = {
|
||||||
interfaces.enp5s0.wakeOnLan.enable = true;
|
interfaces.enp5s0.wakeOnLan.enable = true;
|
||||||
hostName = "HACKSTATION"; };
|
hostName = "HACKSTATION";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
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