formatting and removing useless parameters

This commit is contained in:
2026-07-12 17:22:49 +01:00
parent f5664dd863
commit fb74703c0d
6 changed files with 112 additions and 90 deletions

View File

@@ -4,10 +4,7 @@
...
}: {
flake.nixosModules.kitty = moduleWithSystem (
{
pkgs,
self',
}: {
{self'}: {
environment.systemPackages = with self'.packages; [
kitty
];

View File

@@ -1,5 +1,4 @@
{
self,
inputs,
moduleWithSystem,
...

View File

@@ -6,10 +6,10 @@
flake.nixosConfigurations.HACKSTATION = inputs.nixpkgs.lib.nixosSystem {
modules = with self.nixosModules; [
desktop
hackstationConfiguration
amdDrivers
youtube
development
hackstationConfiguration
bottles
gaming
davinci

View File

@@ -3,9 +3,10 @@
inputs,
...
}: {
flake.nixosModules.hackstationConfiguration = {pkgs, ...}: {
flake.nixosModules.hackstationConfiguration = {...}: {
networking = {
interfaces.enp5s0.wakeOnLan.enable = true;
hostName = "HACKSTATION"; };
hostName = "HACKSTATION";
};
};
}

View File

@@ -0,0 +1,14 @@
{
self,
inputs,
...
}: {
flake.nixosConfigurations.mobile02 = inputs.nixpkgs.lib.nixosSystem {
modules = with self.nixosModules; [
desktop
mobile02Configuration
intelDrivers
development
];
};
}

View File

@@ -0,0 +1,11 @@
{
self,
inputs,
...
}: {
flake.nixosModules.mobile02Configuration = {...}: {
networking = {
hostName = "mobile02";
};
};
}