diff options
author | Adrian Kummerlaender | 2021-06-09 20:20:37 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2021-06-09 20:21:31 +0200 |
commit | cf9d12cc6e6b01dad6a16f56053fdb128dde7274 (patch) | |
tree | 8afe80dc16882afe5940c8e86a49506e6173181a /host | |
parent | 4959da8a20bbd8d4f0f85e39d5a41d588e83b768 (diff) | |
download | nixos_home-cf9d12cc6e6b01dad6a16f56053fdb128dde7274.tar nixos_home-cf9d12cc6e6b01dad6a16f56053fdb128dde7274.tar.gz nixos_home-cf9d12cc6e6b01dad6a16f56053fdb128dde7274.tar.bz2 nixos_home-cf9d12cc6e6b01dad6a16f56053fdb128dde7274.tar.lz nixos_home-cf9d12cc6e6b01dad6a16f56053fdb128dde7274.tar.xz nixos_home-cf9d12cc6e6b01dad6a16f56053fdb128dde7274.tar.zst nixos_home-cf9d12cc6e6b01dad6a16f56053fdb128dde7274.zip |
Add basic hephaestus config
Diffstat (limited to 'host')
-rw-r--r-- | host/hephaestus.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/host/hephaestus.nix b/host/hephaestus.nix new file mode 100644 index 0000000..2289c15 --- /dev/null +++ b/host/hephaestus.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: + +{ + imports = [ + ../gui/default.nix + ]; + + custom.hidpi = false; + + services.kdeconnect = { + enable = true; + }; +} |