aboutsummaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/home.nix b/home.nix
deleted file mode 100644
index 83e74d2..0000000
--- a/home.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ inputs, config, lib, pkgs, ... }:
-{
- imports = [
- ./modules/global.nix
- ./modules
- ];
-
- config.modules = {
- global = {
- notNixOS = true;
- wayland = true;
-
- extraPackages = with pkgs; [
- wmenu
- cmatrix
- ];
- };
-
- foot.enable = true;
-
- neovim = {
- enable = true;
- };
-
- sway = {
- enable = true;
- terminal = "foot";
- };
-
- mako.enable = true;
- neovide.enable = true;
- };
-}