mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: matrix cleanup automations, kde plasma
This commit is contained in:
parent
a07bdbcafb
commit
ed4defc62f
25 changed files with 521 additions and 100 deletions
31
systems/daiyousei.nix
Normal file
31
systems/daiyousei.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
_: let
|
||||
hostConfig = {
|
||||
lib,
|
||||
tree,
|
||||
modulesPath,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.modules) mkDefault;
|
||||
in {
|
||||
imports =
|
||||
[
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
]
|
||||
++ (with tree.nixos.profiles; [
|
||||
server
|
||||
])
|
||||
++ (with tree.nixos.hardware; [
|
||||
oracle_flex
|
||||
])
|
||||
++ (with tree.nixos.servers; [
|
||||
]);
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
};
|
||||
in {
|
||||
arch = "aarch64";
|
||||
type = "NixOS";
|
||||
modules = [
|
||||
hostConfig
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue