This commit is contained in:
Sean Kovacs 2026-02-22 13:02:46 -05:00
commit 6c4170a4e4
Signed by: sckova
GPG key ID: 00F325187C68651A
2 changed files with 18 additions and 18 deletions

View file

@ -312,14 +312,15 @@
{ nixpkgs.overlays = [ apple-silicon.overlays.apple-silicon-overlay ]; }
];
};
alien =
mkNixosSystem {
alien = mkNixosSystem {
hostname = "alien";
system = "x86_64-linux";
extraModules = [
{ nixpkgs.overlays = [ nix-cachyos-kernel.overlays.pinned ]; }
{
nixpkgs.overlays = [ nix-cachyos-kernel.overlays.pinned ];
}
];
};
}
// nixpkgs.lib.genAttrs supportedSystems (
system:
@ -328,7 +329,6 @@
inherit system;
}
);
};
homeConfigurations = {
peach = mkHomeConfig {

View file

@ -1,7 +1,7 @@
{ catppuccin, ... }:
{ ... }:
{
home-manager.users.sckova = {
imports = [ catppuccin.homeModules.catppuccin ];
imports = [ ];
};
services.spice-vdagentd.enable = true;