chore(flake): Remove old outputs
This commit is contained in:
parent
654088a3f9
commit
1b95b73304
1 changed files with 4 additions and 58 deletions
62
flake.nix
62
flake.nix
|
@ -11,68 +11,14 @@
|
||||||
namespace = "marleyos";
|
namespace = "marleyos";
|
||||||
title = "marleyOS";
|
title = "marleyOS";
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
old =
|
homes.modules = with inputs; [
|
||||||
{ self, ... }@inputs:
|
rose-pine.homeManagerModules.rose-pine
|
||||||
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
|
||||||
debug = true;
|
|
||||||
|
|
||||||
systems = [
|
|
||||||
"x86_64-linux"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
imports = [
|
outputs-builder = channels: {
|
||||||
inputs.nixos-unified.flakeModules.default
|
formatter = channels.nixpkgs.nixfmt-rfc-style;
|
||||||
inputs.devenv.flakeModule
|
|
||||||
];
|
|
||||||
|
|
||||||
flake = {
|
|
||||||
homeModules.marley =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports =
|
|
||||||
let
|
|
||||||
myHomeMods = "${self}/modules/home";
|
|
||||||
in
|
|
||||||
[
|
|
||||||
inputs.rose-pine.homeManagerModules.rose-pine
|
|
||||||
"${myHomeMods}/iconTheme.nix"
|
|
||||||
"${myHomeMods}/shellAbbrs.nix"
|
|
||||||
"${self}/home"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
let
|
|
||||||
me = "marley";
|
|
||||||
inherit (self.nixos-unified.lib) mkHomeConfiguration;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
legacyPackages.homeConfigurations."${me}" = mkHomeConfiguration pkgs (
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
"${self}/modules/home/me.nix"
|
|
||||||
self.homeModules."${me}"
|
|
||||||
];
|
|
||||||
|
|
||||||
me.name = me;
|
|
||||||
home.stateVersion = "24.05";
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
devenv.shells.default = {
|
|
||||||
imports = [
|
|
||||||
"${self}/shells/base.nix"
|
|
||||||
"${self}/shells/nix.nix"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
formatter = pkgs.nixfmt-rfc-style;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
Loading…
Reference in a new issue