really switching to lix now

This commit is contained in:
Charlie Root 2024-08-22 20:56:58 +02:00
commit 4773f8d79a
4 changed files with 16 additions and 11 deletions

View file

@ -4,9 +4,7 @@
inputs.flake-parts.lib.mkFlake {inherit inputs;} ({withSystem, ...}: {
systems = ["x86_64-linux"];
imports = [
# inputs.treefmt-nix.flakeModule
./parts/shell.nix
# ./parts/fmt.nix
./parts
];
flake = {

View file

@ -39,13 +39,6 @@ in {
../modules
inputs.home-manager.nixosModules.home-manager
inputs.lix-module.nixosModules.default
{
imports = [inputs.impurity.nixosModules.impurity];
impurity = {
enable = true;
configRoot = self;
};
}
];
};
@ -56,6 +49,7 @@ in {
./vali/hermit
../modules
inputs.home-manager.nixosModules.home-manager
# inputs.lix-module.nixosModules.default
inputs.nixos-hardware.nixosModules.dell-xps-15-7590-nvidia
];
};

View file

@ -1,9 +1,15 @@
# credits to raf
{pkgs, ...}: {
{
inputs,
pkgs,
...
}: {
imports = [
./documentation.nix # nixos documentation
./nixpkgs.nix # global nixpkgs configuration.nix
./registry.nix
inputs.lix-module.nixosModules.default
];
nix = {

7
parts/default.nix Normal file
View file

@ -0,0 +1,7 @@
_: {
imports = [
# ./fmt.nix
./shell.nix
./templates
];
}