merlin: deploy sway
Some checks failed
flake / flake (push) Failing after 20s

This commit is contained in:
Jake Hillion 2024-11-10 11:52:53 +00:00
parent 390bdaaf51
commit 5c52b2a8a2
4 changed files with 23 additions and 1 deletions

View File

@ -43,6 +43,7 @@
custom.users.jake.password = true;
security.sudo.wheelNeedsPassword = lib.mkForce true;
custom.desktop.sway.enable = true;
# Networking
networking = {

View File

@ -6,7 +6,7 @@
./ca/default.nix
./chia.nix
./defaults.nix
./desktop/awesome/default.nix
./desktop/default.nix
./dns.nix
./home/default.nix
./hostinfo.nix

View File

@ -0,0 +1,8 @@
{ config, lib, ... }:
{
imports = [
./awesome/default.nix
./sway/default.nix
];
}

View File

@ -0,0 +1,13 @@
{ config, pkgs, lib, ... }:
let
cfg = config.custom.desktop.sway;
in
{
options.custom.desktop.sway = {
enable = lib.mkEnableOption "sway";
};
config = lib.mkIf cfg.enable {
};
}