Disable home module until proper dotfile migration
This commit is contained in:
parent
3b65c57b30
commit
a97a9507ec
@ -81,7 +81,7 @@
|
|||||||
./modules/gui.nix
|
./modules/gui.nix
|
||||||
./modules/datasync.nix
|
./modules/datasync.nix
|
||||||
./modules/audio.nix
|
./modules/audio.nix
|
||||||
./modules/home.nix
|
#./modules/home.nix
|
||||||
./modules/hardware-configuration.nix
|
./modules/hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
imv
|
imv
|
||||||
kanshi
|
kanshi
|
||||||
redshift-wlr
|
redshift-wlr
|
||||||
|
kitty
|
||||||
];
|
];
|
||||||
extraSessionCommands = ''
|
extraSessionCommands = ''
|
||||||
export MOZ_ENABLE_WAYLAND=1
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
|
@ -1,16 +1,5 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
# Doom emacs overlay
|
|
||||||
let
|
|
||||||
|
|
||||||
doom-emacs = pkgs.callPackage (builtins.fetchTarball {
|
|
||||||
url = https://github.com/vlaci/nix-doom-emacs/archive/master.tar.gz;
|
|
||||||
}) {
|
|
||||||
doomPrivateDir = ./doom.d;
|
|
||||||
};
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
{
|
{
|
||||||
# User packages
|
# User packages
|
||||||
home.packages = [
|
home.packages = [
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
# Doom emacs overlay
|
||||||
|
let
|
||||||
|
|
||||||
|
doom-emacs = pkgs.callPackage (builtins.fetchTarball {
|
||||||
|
url = https://github.com/vlaci/nix-doom-emacs/archive/master.tar.gz;
|
||||||
|
}) {
|
||||||
|
doomPrivateDir = ./doom.d;
|
||||||
|
};
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# Monitoring
|
# Monitoring
|
||||||
@ -14,8 +25,16 @@
|
|||||||
# LaTeX
|
# LaTeX
|
||||||
texlive.combined.scheme-full
|
texlive.combined.scheme-full
|
||||||
pandoc
|
pandoc
|
||||||
# Declarative user config
|
# Text editors
|
||||||
home-manager
|
doom-emacs
|
||||||
|
neovim
|
||||||
|
# Terminals
|
||||||
|
tmux
|
||||||
|
tmuxp
|
||||||
|
# Development
|
||||||
|
git
|
||||||
|
direnv
|
||||||
|
lorri
|
||||||
];
|
];
|
||||||
|
|
||||||
# Fonts declaration
|
# Fonts declaration
|
||||||
|
Loading…
Reference in New Issue
Block a user