Compare commits
2 commits
244d2111af
...
d72c0d5926
Author | SHA1 | Date | |
---|---|---|---|
Antoine Martin | d72c0d5926 | ||
Antoine Martin | f64b7b18d7 |
|
@ -3,23 +3,17 @@
|
||||||
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,6 +2,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./emacs.nix
|
./emacs.nix
|
||||||
|
./flameshot.nix
|
||||||
./x
|
./x
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,16 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
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
|
||||||
|
|
13
home/flameshot.nix
Normal file
13
home/flameshot.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ 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,8 +27,9 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = lib.mkIf isEnabled {
|
config = lib.mkIf isEnabled {
|
||||||
# FIXME: enable flameshot when added
|
my.home = {
|
||||||
# my.home = {};
|
flameshot.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
xsession.windowManager.i3 = {
|
xsession.windowManager.i3 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue