Compare commits
9 Commits
3349c8ecad
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 62ccc18181 | |||
| d175858293 | |||
| eb51057ac9 | |||
| e15e64a1f9 | |||
| f670c0720c | |||
| e8c5df1a80 | |||
| 81d59b7cfd | |||
| d6aac89d5d | |||
| a1c4fcbf1d |
13
flake.nix
13
flake.nix
@@ -45,7 +45,6 @@
|
|||||||
nixpkgs,
|
nixpkgs,
|
||||||
home-manager,
|
home-manager,
|
||||||
agenix,
|
agenix,
|
||||||
stylix,
|
|
||||||
nixos-wsl,
|
nixos-wsl,
|
||||||
statusbar,
|
statusbar,
|
||||||
...
|
...
|
||||||
@@ -98,9 +97,6 @@
|
|||||||
|
|
||||||
agenix.homeManagerModules.default
|
agenix.homeManagerModules.default
|
||||||
./secrets
|
./secrets
|
||||||
|
|
||||||
stylix.homeModules.stylix
|
|
||||||
./home/stylix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -117,9 +113,6 @@
|
|||||||
|
|
||||||
agenix.homeManagerModules.default
|
agenix.homeManagerModules.default
|
||||||
./secrets
|
./secrets
|
||||||
|
|
||||||
stylix.homeModules.stylix
|
|
||||||
./home/stylix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -147,7 +140,7 @@
|
|||||||
modules ? [],
|
modules ? [],
|
||||||
}:
|
}:
|
||||||
home-manager.lib.homeManagerConfiguration {
|
home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {hostPlatform = system;};
|
pkgs = import nixpkgs {inherit system;};
|
||||||
inherit modules;
|
inherit modules;
|
||||||
extraSpecialArgs = {inherit inputs stateVersion user dotsDir;};
|
extraSpecialArgs = {inherit inputs stateVersion user dotsDir;};
|
||||||
};
|
};
|
||||||
@@ -156,13 +149,13 @@
|
|||||||
user = "nix";
|
user = "nix";
|
||||||
dotsDir = "/home/homelab-dots";
|
dotsDir = "/home/homelab-dots";
|
||||||
modules = [
|
modules = [
|
||||||
./home/headless.nix
|
./home/demenik.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"db56@wsl50" = mkHomeConfig {
|
"db56@wsl50" = mkHomeConfig {
|
||||||
user = "db56";
|
user = "db56";
|
||||||
modules = [
|
modules = [
|
||||||
./home/headless.nix
|
./home/demenik.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./global.nix
|
./global.nix
|
||||||
./xdg-desktop.nix
|
./xdg-desktop.nix
|
||||||
@@ -16,6 +20,9 @@
|
|||||||
./editors/nvim
|
./editors/nvim
|
||||||
./editors/intellij.nix
|
./editors/intellij.nix
|
||||||
./editors/godot.nix
|
./editors/godot.nix
|
||||||
|
|
||||||
|
inputs.stylix.homeModules.stylix
|
||||||
|
./stylix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file.".face" = {
|
home.file.".face" = {
|
||||||
|
|||||||
Reference in New Issue
Block a user