meta: Flatten modules directory

This commit is contained in:
Donovan Glover 2023-06-16 14:03:09 -04:00
parent 32fc0d4be5
commit 374a0a2d14
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
13 changed files with 15 additions and 15 deletions

View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -1,15 +1,15 @@
{ {
imports = [ imports = [
./dual-function-keys ./dual-function-keys.nix
./fcitx5-mozc ./fcitx.nix
./fish-starship ./fish.nix
./fonts ./fonts.nix
./hyprland ./hyprland.nix
./librewolf ./librewolf.nix
./piper ./piper.nix
./pipewire ./pipewire.nix
./stylix ./stylix.nix
./swaylock ./swaylock.nix
./thunar ./thunar.nix
]; ];
} }

View File

@ -1,6 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
let VARIABLES = import ../../src/variables.nix; in { let VARIABLES = import ../src/variables.nix; in {
users.defaultUserShell = pkgs.fish; users.defaultUserShell = pkgs.fish;
environment.shells = [ pkgs.fish ]; environment.shells = [ pkgs.fish ];

View File

@ -1,6 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
let VARIABLES = import ../../src/variables.nix; in { let VARIABLES = import ../src/variables.nix; in {
programs.hyprland.enable = true; programs.hyprland.enable = true;
services.udisks2 = { services.udisks2 = {
enable = true; enable = true;

View File

@ -1,5 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }: {
stylix.image = ./wallpaper.png; stylix.image = ../assets/wallpaper.png;
stylix.polarity = "dark"; stylix.polarity = "dark";
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/monokai.yaml"; stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/monokai.yaml";
stylix.opacity.terminal = 0.92; stylix.opacity.terminal = 0.92;

View File

@ -6,7 +6,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
xfce.exo # Open with kitty support xfce.exo # Open with kitty support
glib glib
(pkgs.callPackage ../../packages/go-thumbnailer { }) (pkgs.callPackage ../packages/go-thumbnailer { })
]; ];
services.gvfs.enable = true; # Trash support services.gvfs.enable = true; # Trash support