mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
meta: Move home modules up one directory
This is possible since each home-manager module is now its own self-contained nix file.
This commit is contained in:
parent
ac7fb96c80
commit
877ce570bf
@ -1,20 +1,20 @@
|
||||
{
|
||||
home-manager.sharedModules = [
|
||||
./dunst
|
||||
./feh
|
||||
./git
|
||||
./gpg
|
||||
./joshuto
|
||||
./kitty
|
||||
./mime-apps
|
||||
./mpv
|
||||
./ncmpcpp
|
||||
./neovim
|
||||
./qutebrowser
|
||||
./rofi
|
||||
./waybar
|
||||
./waycorner
|
||||
./xdg-user-dirs
|
||||
./zathura
|
||||
./dunst.nix
|
||||
./feh.nix
|
||||
./git.nix
|
||||
./gpg.nix
|
||||
./joshuto.nix
|
||||
./kitty.nix
|
||||
./mime-apps.nix
|
||||
./mpv.nix
|
||||
./ncmpcpp.nix
|
||||
./neovim.nix
|
||||
./qutebrowser.nix
|
||||
./rofi.nix
|
||||
./waybar.nix
|
||||
./waycorner.nix
|
||||
./xdg-user-dirs.nix
|
||||
./zathura.nix
|
||||
];
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let VARIABLES = import ../../src/variables.nix; in {
|
||||
let VARIABLES = import ../src/variables.nix; in {
|
||||
home.packages = with pkgs; [ tig ];
|
||||
|
||||
xdg.configFile."tig/config".text = ''
|
@ -1,4 +1,4 @@
|
||||
let VARIABLES = import ../../src/variables.nix; in {
|
||||
let VARIABLES = import ../src/variables.nix; in {
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
|
@ -1,4 +1,4 @@
|
||||
let VARIABLES = import ../../src/variables.nix; in {
|
||||
let VARIABLES = import ../src/variables.nix; in {
|
||||
xdg.mimeApps = {
|
||||
enable = true;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let VARIABLES = import ../../src/variables.nix; in {
|
||||
let VARIABLES = import ../src/variables.nix; in {
|
||||
home.packages = with pkgs; [ mpc-cli ];
|
||||
|
||||
services.mpd = {
|
@ -1,4 +1,4 @@
|
||||
let VARIABLES = import ../../src/variables.nix; in {
|
||||
let VARIABLES = import ../src/variables.nix; in {
|
||||
xdg.userDirs = {
|
||||
enable = true;
|
||||
|
Loading…
Reference in New Issue
Block a user