mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +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 = [
|
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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -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 ];
|
||||||
|
|
@ -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;
|
@ -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;
|
@ -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
|
Loading…
Reference in New Issue
Block a user