mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 17:53:17 +01:00
16 lines
345 B
Nix
16 lines
345 B
Nix
|
# TODO: Write test to ensure that Hyprland starts with basic config
|
||
|
(import ./lib.nix) {
|
||
|
name = "hyprland";
|
||
|
|
||
|
nodes.machine = { self, pkgs, ... }: {
|
||
|
imports = with self.nixosModules; [
|
||
|
hyprland
|
||
|
];
|
||
|
};
|
||
|
|
||
|
testScript = /* python */ ''
|
||
|
output = machine.succeed("echo 'Hello world'")
|
||
|
assert "Hello world" in output
|
||
|
'';
|
||
|
}
|