Files
nix-dotfiles/systems/artemision/default.nix
ahuston-0 40065f6198
Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 9m33s
Check Nix flake / Perform Nix flake checks (pull_request) Failing after 14m4s
add lix to artemision
2025-07-04 11:29:11 -04:00

20 lines
431 B
Nix

{ inputs, ... }:
{
system = "x86_64-linux";
home = true;
sops = true;
lix = true;
server = false;
users = [ "alice" ];
modules = [
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
inputs.stylix.nixosModules.stylix
{
environment.systemPackages = [
inputs.wired-notify.packages.x86_64-linux.default
inputs.hyprland-contrib.packages.x86_64-linux.grimblast
];
}
];
}