Clean up some unused code, perform formatting

This commit is contained in:
Martin Lasson 2025-01-26 00:35:35 +01:00
parent 97e2caa7bb
commit 4b5cdbc6ce
6 changed files with 20 additions and 18 deletions

View file

@ -1,14 +1,12 @@
{ {
pkgs,
config,
self,
nix-homebrew,
... ...
}: }:
{ {
system = { system = {
# Just a stub value, change this to whatever your system requiers.
stateVersion = 5; stateVersion = 5;
}; };
nix-homebrew.user = "larssonmartin1998-mac"; # Just a stub value, change this to whatever your system requiers.
nix-homebrew.user = "JohnDoe";
} }

View file

@ -1,4 +1,4 @@
{ pkgs, homebrew, ... }: { pkgs, ... }:
{ {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [

View file

@ -1,7 +1,8 @@
{ pkgs, ... }: { { pkgs, ... }:
home = { {
file = { home = {
".config/sway".source = ../sway; file = {
}; ".config/sway".source = ../sway;
}; };
};
} }

View file

@ -1,2 +1,3 @@
{ ... }: { { ... }:
{
} }

View file

@ -1,2 +1,3 @@
{ ... }: { { ... }:
{
} }

View file

@ -1,7 +1,8 @@
{ nixos-wsl, ... }: { { nixos-wsl, ... }:
imports = [ {
nixosWSL.nixosModules.default imports = [
]; nixos-wsl.nixosModules.default
];
wsl.enable = true; wsl.enable = true;
} }