diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-08 19:41:29 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-08 19:41:29 +0530 |
commit | 68632f8c1797477abdfebc148e73b54a203861e8 (patch) | |
tree | 7c2cccf5be08dc481f5c3abbf35d8912957fad16 | |
parent | 3ecdc02f33cb58b6bf313ca7ab2ddd94e49148e8 (diff) |
home-manager/gui: init
-rw-r--r-- | flake.nix | 2 | ||||
-rw-r--r-- | home-manager/gui/home.nix | 6 | ||||
-rw-r--r-- | home-manager/gui/modules/foot.nix | 13 |
3 files changed, 20 insertions, 1 deletions
@@ -42,7 +42,7 @@ lib.genAttrs [ "cez" "kay" "lia" "fscusat" "dspace" ] (host: makeNixos host "x86_64-linux"); homeConfigurations = - lib.genAttrs [ "common" ] + lib.genAttrs [ "common" "gui" ] (host: makeHome host "x86_64-linux"); }; } diff --git a/home-manager/gui/home.nix b/home-manager/gui/home.nix new file mode 100644 index 0000000..aa3ab46 --- /dev/null +++ b/home-manager/gui/home.nix @@ -0,0 +1,6 @@ +{ ... }: { + imports = [ + ../common/home.nix + ./modules/foot.nix + ]; +} diff --git a/home-manager/gui/modules/foot.nix b/home-manager/gui/modules/foot.nix new file mode 100644 index 0000000..7adaf40 --- /dev/null +++ b/home-manager/gui/modules/foot.nix @@ -0,0 +1,13 @@ +{ ... }: { + programs.foot = { + enable = true; + + settings = { + colors.background = "000000"; + main = { + pad = "10x10"; + font = "monospace:size=18"; + }; + }; + }; +} |