Compare commits
5 commits
2a3c4899fb
...
e0fb4b8903
Author | SHA1 | Date | |
---|---|---|---|
e0fb4b8903 | |||
7ccea14afb | |||
2b045992c1 | |||
b4c1c7891a | |||
b9bfb14bad |
13 changed files with 35 additions and 50 deletions
|
@ -69,6 +69,7 @@
|
|||
ssh.enable = true;
|
||||
btop.enable = true;
|
||||
nh.enable = true;
|
||||
thunar.enable = true;
|
||||
};
|
||||
};
|
||||
system.stateVersion = "23.11";
|
||||
|
|
|
@ -91,6 +91,7 @@ in {
|
|||
ssh.enable = true;
|
||||
btop.enable = true;
|
||||
nh.enable = true;
|
||||
thunar.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,10 +17,8 @@
|
|||
title = "foot";
|
||||
locked-title = "no";
|
||||
|
||||
font = "valiosevka:size=14";
|
||||
font-bold = "valiosevka:size=14";
|
||||
# font = "Iosevka Nerd Font:size=14";
|
||||
# font-bold = "Iosevka Nerd Font:size=14";
|
||||
font = "Iosevka Nerd Font:size=14";
|
||||
font-bold = "Iosevka Nerd Font:size=14";
|
||||
|
||||
line-height = 20;
|
||||
letter-spacing = 0;
|
||||
|
|
|
@ -3,21 +3,37 @@
|
|||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.thunar = {
|
||||
enable = true;
|
||||
plugins = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs.xfce)
|
||||
thunar-volman
|
||||
thunar-vcs-plugin
|
||||
thunar-archive-plugin
|
||||
thunar-media-tags-plugin
|
||||
;
|
||||
}: let
|
||||
inherit (lib.modules) mkIf;
|
||||
inherit (lib.options) mkEnableOption;
|
||||
cfg = config.modules.programs.thunar;
|
||||
in {
|
||||
options.modules.programs.thunar.enable = mkEnableOption "Thunar file manager";
|
||||
config = mkIf cfg.enable {
|
||||
programs.thunar = {
|
||||
enable = true;
|
||||
plugins = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs.xfce)
|
||||
thunar-volman
|
||||
thunar-vcs-plugin
|
||||
thunar-archive-plugin
|
||||
thunar-media-tags-plugin
|
||||
;
|
||||
};
|
||||
};
|
||||
};
|
||||
services.gvfs = {
|
||||
enable = true;
|
||||
package = pkgs.gvfs;
|
||||
services.gvfs = {
|
||||
enable = true;
|
||||
package = pkgs.gvfs;
|
||||
};
|
||||
|
||||
# Archive management
|
||||
programs.file-roller = {
|
||||
enable = true;
|
||||
package = pkgs.file-roller;
|
||||
};
|
||||
|
||||
# image thumbnails
|
||||
services.tumbler.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
_: {
|
||||
imports = [
|
||||
./pipewire.nix
|
||||
./locate.nix
|
||||
./ssh.nix
|
||||
./greetd.nix
|
||||
./mako.nix
|
||||
./mpd.nix
|
||||
./firewall.nix
|
||||
];
|
||||
}
|
|
@ -1,24 +1,5 @@
|
|||
{pkgs, ...}: let
|
||||
inherit (builtins) mapAttrs;
|
||||
valiosevka = pkgs.iosevka.override {
|
||||
privateBuildPlan = {
|
||||
family = "valiosevka";
|
||||
spacing = "normal";
|
||||
serifs = "sans";
|
||||
noCvSs = true;
|
||||
exportGlyphNames = false;
|
||||
|
||||
ligations.inherits = "dlig";
|
||||
variants = {
|
||||
inherits = "ss15";
|
||||
design = {
|
||||
e = "flat-crossbar";
|
||||
f = "diagonal-tailed-crossbar-at-x-height";
|
||||
};
|
||||
};
|
||||
};
|
||||
set = "Fancy";
|
||||
};
|
||||
in {
|
||||
# A (somewhat) sane list of fonts to be installed.
|
||||
fonts = {
|
||||
|
@ -73,7 +54,6 @@ in {
|
|||
comic-shanns-mono
|
||||
symbols-only
|
||||
;
|
||||
inherit valiosevka;
|
||||
};
|
||||
fontDir = {
|
||||
# Whether to create a directory with links to all fonts in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue