really switching to lix now
This commit is contained in:
parent
8443084c3a
commit
4773f8d79a
4 changed files with 16 additions and 11 deletions
|
@ -4,9 +4,7 @@
|
||||||
inputs.flake-parts.lib.mkFlake {inherit inputs;} ({withSystem, ...}: {
|
inputs.flake-parts.lib.mkFlake {inherit inputs;} ({withSystem, ...}: {
|
||||||
systems = ["x86_64-linux"];
|
systems = ["x86_64-linux"];
|
||||||
imports = [
|
imports = [
|
||||||
# inputs.treefmt-nix.flakeModule
|
./parts
|
||||||
./parts/shell.nix
|
|
||||||
# ./parts/fmt.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
flake = {
|
flake = {
|
||||||
|
|
|
@ -39,13 +39,6 @@ in {
|
||||||
../modules
|
../modules
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
inputs.lix-module.nixosModules.default
|
inputs.lix-module.nixosModules.default
|
||||||
{
|
|
||||||
imports = [inputs.impurity.nixosModules.impurity];
|
|
||||||
impurity = {
|
|
||||||
enable = true;
|
|
||||||
configRoot = self;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -56,6 +49,7 @@ in {
|
||||||
./vali/hermit
|
./vali/hermit
|
||||||
../modules
|
../modules
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
|
# inputs.lix-module.nixosModules.default
|
||||||
inputs.nixos-hardware.nixosModules.dell-xps-15-7590-nvidia
|
inputs.nixos-hardware.nixosModules.dell-xps-15-7590-nvidia
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
# credits to raf
|
# credits to raf
|
||||||
{pkgs, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./documentation.nix # nixos documentation
|
./documentation.nix # nixos documentation
|
||||||
./nixpkgs.nix # global nixpkgs configuration.nix
|
./nixpkgs.nix # global nixpkgs configuration.nix
|
||||||
./registry.nix
|
./registry.nix
|
||||||
|
|
||||||
|
inputs.lix-module.nixosModules.default
|
||||||
];
|
];
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
|
7
parts/default.nix
Normal file
7
parts/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
_: {
|
||||||
|
imports = [
|
||||||
|
# ./fmt.nix
|
||||||
|
./shell.nix
|
||||||
|
./templates
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue