Compare commits
No commits in common. "d72c0d592694a225c480ce76ce588fc4c059793d" and "244d2111afc955bb2f368d3c6604bb13b0e10464" have entirely different histories.
d72c0d5926
...
244d2111af
|
@ -3,17 +3,23 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
alacritty
|
alacritty
|
||||||
discord
|
discord
|
||||||
|
emacsPgtkGcc
|
||||||
feh
|
feh
|
||||||
firefox
|
firefox
|
||||||
|
flameshot
|
||||||
pavucontrol
|
pavucontrol
|
||||||
slack
|
slack
|
||||||
spotify
|
spotify
|
||||||
|
sqlite # needed for org-roam
|
||||||
zathura
|
zathura
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fonts.fonts = with pkgs; [
|
||||||
|
input-fonts
|
||||||
|
emacs-all-the-icons-fonts
|
||||||
|
];
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
programs.nm-applet.enable = true;
|
programs.nm-applet.enable = true;
|
||||||
|
|
||||||
# NOTE: needed for home emacs configuration
|
|
||||||
nixpkgs.config.input-fonts.acceptLicense = true;
|
nixpkgs.config.input-fonts.acceptLicense = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./emacs.nix
|
./emacs.nix
|
||||||
./flameshot.nix
|
|
||||||
./x
|
./x
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -5,16 +5,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.my.home.emacs.enable {
|
config = lib.mkIf config.my.home.emacs.enable {
|
||||||
home.packages = with pkgs; [
|
|
||||||
sqlite # needed by org-roam
|
|
||||||
|
|
||||||
# fonts used by my config
|
|
||||||
input-fonts
|
|
||||||
emacs-all-the-icons-fonts
|
|
||||||
];
|
|
||||||
# make sure above fonts are discoverable
|
|
||||||
fonts.fontconfig.enable = true;
|
|
||||||
|
|
||||||
services.emacs = {
|
services.emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# generate emacsclient desktop file
|
# generate emacsclient desktop file
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
{ config, lib, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.my.home.flameshot;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.my.home.flameshot = with lib; {
|
|
||||||
enable = mkEnableOption "flameshot autolaunch";
|
|
||||||
};
|
|
||||||
|
|
||||||
config.services.flameshot = lib.mkIf cfg.enable {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -27,9 +27,8 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf isEnabled {
|
config = lib.mkIf isEnabled {
|
||||||
my.home = {
|
# FIXME: enable flameshot when added
|
||||||
flameshot.enable = true;
|
# my.home = {};
|
||||||
};
|
|
||||||
|
|
||||||
xsession.windowManager.i3 = {
|
xsession.windowManager.i3 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue