aboutsummaryrefslogtreecommitdiff
path: root/fw/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'fw/home.nix')
-rw-r--r--fw/home.nix68
1 files changed, 68 insertions, 0 deletions
diff --git a/fw/home.nix b/fw/home.nix
new file mode 100644
index 0000000..99acdde
--- /dev/null
+++ b/fw/home.nix
@@ -0,0 +1,68 @@
+{ inputs, config, lib, pkgs, ... }:
+{
+ imports = [
+ ../modules/global.nix
+ ../modules
+ ];
+
+ config = {
+ home.pointerCursor = {
+ package = pkgs.adwaita-icon-theme;
+ name = "Adwaita";
+ size = 24;
+ x11 = {
+ enable = true;
+ defaultCursor = "Adwaita";
+ };
+ };
+ };
+ config.modules = {
+ global = {
+ wayland = true;
+
+ extraPackages = with pkgs; [
+ wmenu
+ cmatrix
+ wayneko
+ pfetch
+ nicotine-plus
+ mpc
+ ];
+ };
+
+ colors.mountain.enable = true;
+ # colors.tomorrow.enable = true;
+ gpg.enable = true;
+
+ pass = {
+ enable = true;
+ key = "B5200ABFBD213FC9C17C6DB91291CBBCF3B9F225";
+ };
+
+ foot.enable = true;
+
+ neovim = {
+ enable = true;
+ };
+
+ sway = {
+ enable = true;
+ terminal = "foot";
+ };
+
+ i3status = {
+ enable = true;
+ wireless = true;
+ battery = true;
+ };
+
+ qutebrowser = {
+ enable = true;
+ };
+
+ mako.enable = true;
+ neovide.enable = true;
+ zsh.enable = true;
+ tofi.enable = true;
+ };
+}