diff options
| author | Fuwn <[email protected]> | 2024-10-03 02:35:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 02:35:16 -0700 |
| commit | 97bbd863c5e6102e36ffdd36a9aecd2882485106 (patch) | |
| tree | 676fcd635699fa4e84c6d067ae9ed2b0eb3cae09 /home/ebisu/kansai/fortune/system | |
| parent | hosts: use common wording instead of default (diff) | |
| download | nixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.tar.xz nixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.zip | |
home: moves some modules to core
Diffstat (limited to 'home/ebisu/kansai/fortune/system')
| -rw-r--r-- | home/ebisu/kansai/fortune/system/default.nix | 9 | ||||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/encryption/bitwarden.nix | 8 | ||||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/encryption/default.nix | 7 | ||||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/fonts/default.nix | 75 | ||||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans-Regular.ttf | bin | 10524000 -> 0 bytes | |||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans.ttf | bin | 8666420 -> 0 bytes | |||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/fonts/meowsans/default.nix | 1 | ||||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/virtualisation/default.nix | 1 | ||||
| -rw-r--r-- | home/ebisu/kansai/fortune/system/xdg.nix | 33 |
9 files changed, 1 insertions, 133 deletions
diff --git a/home/ebisu/kansai/fortune/system/default.nix b/home/ebisu/kansai/fortune/system/default.nix index a30ffe1..ee06d93 100644 --- a/home/ebisu/kansai/fortune/system/default.nix +++ b/home/ebisu/kansai/fortune/system/default.nix @@ -1,8 +1,5 @@ -{ pkgs, ... }: { imports = [ - ./encryption - ./fonts ./shell ./terminal ./virtualisation @@ -11,11 +8,5 @@ ./ssh.nix ./tracing.nix ./variables.nix - ./xdg.nix - ]; - - home.packages = with pkgs; [ - gnome-logs - procs ]; } diff --git a/home/ebisu/kansai/fortune/system/encryption/bitwarden.nix b/home/ebisu/kansai/fortune/system/encryption/bitwarden.nix deleted file mode 100644 index 2e5cb32..0000000 --- a/home/ebisu/kansai/fortune/system/encryption/bitwarden.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ pkgs, ... }: -{ - home.packages = with pkgs; [ - bitwarden-desktop - # bitwarden-cli - # bitwarden-menu - ]; -} diff --git a/home/ebisu/kansai/fortune/system/encryption/default.nix b/home/ebisu/kansai/fortune/system/encryption/default.nix deleted file mode 100644 index 06b7c90..0000000 --- a/home/ebisu/kansai/fortune/system/encryption/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: -{ - home.packages = with pkgs; [ - libsForQt5.ksshaskpass - seahorse - ]; -} diff --git a/home/ebisu/kansai/fortune/system/fonts/default.nix b/home/ebisu/kansai/fortune/system/fonts/default.nix deleted file mode 100644 index 0a7776f..0000000 --- a/home/ebisu/kansai/fortune/system/fonts/default.nix +++ /dev/null @@ -1,75 +0,0 @@ -{ pkgs, inputs, ... }: -{ - imports = [ ./meowsans ]; - - fonts = { - fontconfig = { - enable = true; - - defaultFonts = { - serif = [ - "New York Medium" - "Hiragino Sans" - "JoyPixels" - "Noto Color Emoji" - "FontAwesome" - ]; - - sansSerif = [ - "SF Pro Text" - "Hiragino Sans" - "JoyPixels" - "Noto Color Emoji" - "FontAwesome" - ]; - - monospace = [ - "SF Mono" - "Hiragino Sans" - "JoyPixels" - "FontAwesome" - "Braille" - ]; - }; - }; - }; - - home.packages = - with pkgs; - with inputs.apple-fonts.packages.${pkgs.system}; - [ - source-code-pro - source-han-sans - noto-fonts - noto-fonts-cjk-sans - noto-fonts-cjk-serif - noto-fonts-color-emoji - lmodern - hanazono - jigmo - iosevka - libertine - sarasa-gothic - nerdfonts - cantarell-fonts - inter - font-awesome - joypixels - hiragino-sans - weather-icons - material-design-icons - meslo-lgs-nf - sf-pro - sf-pro-nerd - sf-compact - sf-compact-nerd - sf-mono - sf-mono-nerd - sf-arabic - sf-arabic-nerd - ny - ny-nerd - ]; - - nixpkgs.config.joypixels.acceptLicense = true; -} diff --git a/home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans-Regular.ttf b/home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans-Regular.ttf Binary files differdeleted file mode 100644 index 0d12d34..0000000 --- a/home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans-Regular.ttf +++ /dev/null diff --git a/home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans.ttf b/home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans.ttf Binary files differdeleted file mode 100644 index 8bb6c1a..0000000 --- a/home/ebisu/kansai/fortune/system/fonts/meowsans/MeowSans_Font/MeowSans.ttf +++ /dev/null diff --git a/home/ebisu/kansai/fortune/system/fonts/meowsans/default.nix b/home/ebisu/kansai/fortune/system/fonts/meowsans/default.nix deleted file mode 100644 index fbf57fc..0000000 --- a/home/ebisu/kansai/fortune/system/fonts/meowsans/default.nix +++ /dev/null @@ -1 +0,0 @@ -{ home.file.".local/share/fonts/MeowSans_Font".source = ./MeowSans_Font; } diff --git a/home/ebisu/kansai/fortune/system/virtualisation/default.nix b/home/ebisu/kansai/fortune/system/virtualisation/default.nix index bc74b7e..8f0d59c 100644 --- a/home/ebisu/kansai/fortune/system/virtualisation/default.nix +++ b/home/ebisu/kansai/fortune/system/virtualisation/default.nix @@ -1,6 +1,7 @@ { pkgs, ... }: { imports = [ ./docker.nix ]; + home.packages = with pkgs; [ bottles wine diff --git a/home/ebisu/kansai/fortune/system/xdg.nix b/home/ebisu/kansai/fortune/system/xdg.nix deleted file mode 100644 index 7a0bf32..0000000 --- a/home/ebisu/kansai/fortune/system/xdg.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ pkgs, config, ... }: -{ - home.packages = with pkgs; [ - xdg-utils - xdg-ninja - ]; - - xdg = { - enable = true; - cacheHome = "${config.home.homeDirectory}/.cache"; - configHome = "${config.home.homeDirectory}/.config"; - dataHome = "${config.home.homeDirectory}/.local/share"; - stateHome = "${config.home.homeDirectory}/.local/state"; - - userDirs = { - enable = pkgs.stdenv.isLinux; - createDirectories = true; - download = "${config.home.homeDirectory}/Downloads"; - desktop = "${config.home.homeDirectory}/Desktop"; - documents = "${config.home.homeDirectory}/Documents"; - publicShare = null; # "${config.home.homeDirectory}/Public"; - templates = null; # "${config.home.homeDirectory}/Templates"; - music = "${config.home.homeDirectory}/Music"; - pictures = "${config.home.homeDirectory}/Pictures"; - videos = "${config.home.homeDirectory}/Videos"; - - extraConfig = { - XDG_SCREENSHOTS_DIR = "${config.xdg.userDirs.pictures}/Screenshots"; - XDG_MAIL_DIR = "${config.home.homeDirectory}/Mail"; - }; - }; - }; -} |