Compare commits
2 commits
c1ebfbd5cb
...
ee8d39034d
Author | SHA1 | Date | |
---|---|---|---|
ee8d39034d | |||
fe40c897db |
3 changed files with 7 additions and 6 deletions
|
@ -127,7 +127,7 @@
|
||||||
"editor.semanticHighlighting.enabled" = true;
|
"editor.semanticHighlighting.enabled" = true;
|
||||||
"workbench.colorTheme" = "Catppuccin Mocha";
|
"workbench.colorTheme" = "Catppuccin Mocha";
|
||||||
"haskell.manageHLS" = "PATH";
|
"haskell.manageHLS" = "PATH";
|
||||||
"editor.fontFamily" = "Berkeley Mono, DejaVu Sans Mono, monospace, Unifont";
|
"editor.fontFamily" = "monospace";
|
||||||
"terminal.integrated.minimumContrastRatio" = 1;
|
"terminal.integrated.minimumContrastRatio" = 1;
|
||||||
"terminal.integrated.shellIntegration.enabled" = false;
|
"terminal.integrated.shellIntegration.enabled" = false;
|
||||||
"terminal.integrated.profiles.linux" = {
|
"terminal.integrated.profiles.linux" = {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
{ config, pkgs, lib, emacs-overlay, ... }:
|
{ config, pkgs, lib, emacs-overlay, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
|
@ -19,6 +18,9 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
services.emacs.package = pkgs.emacs29-pgtk;
|
services.emacs.package = pkgs.emacs29-pgtk;
|
||||||
services.emacs.enable = true;
|
services.emacs.enable = true;
|
||||||
|
|
||||||
|
@ -119,7 +121,7 @@
|
||||||
users.users.leonv = {
|
users.users.leonv = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Leon Vatthauer";
|
description = "Leon Vatthauer";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||||||
initialPassword = "leonv"; # just for setup
|
initialPassword = "leonv"; # just for setup
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -164,7 +166,6 @@
|
||||||
## disable logging when direnv changes
|
## disable logging when direnv changes
|
||||||
DIRENV_LOG_FORMAT = [];
|
DIRENV_LOG_FORMAT = [];
|
||||||
};
|
};
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
fonts = {
|
fonts = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
@ -180,7 +181,7 @@
|
||||||
enableDefaultPackages = true;
|
enableDefaultPackages = true;
|
||||||
fontconfig = {
|
fontconfig = {
|
||||||
defaultFonts = {
|
defaultFonts = {
|
||||||
monospace = [ "Berkeley Mono Nerd Font" ];
|
monospace = [ "BerkeleyMono Nerd Font Mono" ];
|
||||||
sansSerif = [ "NotoSans Nerd Font" ];
|
sansSerif = [ "NotoSans Nerd Font" ];
|
||||||
serif = [ "NotoSans Nerd Font" ];
|
serif = [ "NotoSans Nerd Font" ];
|
||||||
emoji = [ "Noto Color Emoji" ];
|
emoji = [ "Noto Color Emoji" ];
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 5300eb9253d6de59fdf53111912bfe66f36dd7c6
|
Subproject commit 746bcd68837fcf66650f415f33d1f1bc0339228a
|
Loading…
Reference in a new issue