mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
meta: Flatten modules directory
This commit is contained in:
parent
32fc0d4be5
commit
374a0a2d14
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
@ -1,15 +1,15 @@
|
||||
{
|
||||
imports = [
|
||||
./dual-function-keys
|
||||
./fcitx5-mozc
|
||||
./fish-starship
|
||||
./fonts
|
||||
./hyprland
|
||||
./librewolf
|
||||
./piper
|
||||
./pipewire
|
||||
./stylix
|
||||
./swaylock
|
||||
./thunar
|
||||
./dual-function-keys.nix
|
||||
./fcitx.nix
|
||||
./fish.nix
|
||||
./fonts.nix
|
||||
./hyprland.nix
|
||||
./librewolf.nix
|
||||
./piper.nix
|
||||
./pipewire.nix
|
||||
./stylix.nix
|
||||
./swaylock.nix
|
||||
./thunar.nix
|
||||
];
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let VARIABLES = import ../../src/variables.nix; in {
|
||||
let VARIABLES = import ../src/variables.nix; in {
|
||||
users.defaultUserShell = pkgs.fish;
|
||||
environment.shells = [ pkgs.fish ];
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let VARIABLES = import ../../src/variables.nix; in {
|
||||
let VARIABLES = import ../src/variables.nix; in {
|
||||
programs.hyprland.enable = true;
|
||||
services.udisks2 = {
|
||||
enable = true;
|
@ -1,5 +1,5 @@
|
||||
{ pkgs, ... }: {
|
||||
stylix.image = ./wallpaper.png;
|
||||
stylix.image = ../assets/wallpaper.png;
|
||||
stylix.polarity = "dark";
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/monokai.yaml";
|
||||
stylix.opacity.terminal = 0.92;
|
@ -6,7 +6,7 @@
|
||||
environment.systemPackages = with pkgs; [
|
||||
xfce.exo # Open with kitty support
|
||||
glib
|
||||
(pkgs.callPackage ../../packages/go-thumbnailer { })
|
||||
(pkgs.callPackage ../packages/go-thumbnailer { })
|
||||
];
|
||||
|
||||
services.gvfs.enable = true; # Trash support
|
Loading…
Reference in New Issue
Block a user