Merge branch 'nix-hm' into local_machine

This commit is contained in:
Martin Lasson 2025-01-26 00:35:54 +01:00
commit d33c1f9944
7 changed files with 20 additions and 19 deletions

View file

@ -1,14 +1,12 @@
{
pkgs,
config,
self,
nix-homebrew,
...
}:
{
system = {
# Just a stub value, change this to whatever your system requiers.
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 = {
packages = with pkgs; [

View file

@ -1,7 +1,8 @@
{ pkgs, ... }: {
home = {
file = {
".config/sway".source = ../sway;
};
{ pkgs, ... }:
{
home = {
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, ... }: {
imports = [
nixosWSL.nixosModules.default
];
{ nixos-wsl, ... }:
{
imports = [
nixos-wsl.nixosModules.default
];
wsl.enable = true;
wsl.enable = true;
}