-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rafiyq Widianto
committed
Sep 18, 2020
1 parent
89e6340
commit 47665df
Showing
7 changed files
with
26 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
# Edit this configuration file to define what should be installed on | ||
# your system. Help is available in the configuration.nix(5) man page | ||
# and in the NixOS manual (accessible by running ‘nixos-help’). | ||
|
||
{ config, lib, pkgs, inputs, ... }: { | ||
|
||
console.font = lib.mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-u28n.psf.gz"; | ||
fonts.enableFontDir = true; | ||
fonts.enableGhostscriptFonts = true; | ||
fonts.fontconfig.dpi = 192; | ||
fonts.fonts = with pkgs; | ||
[ | ||
# corefonts # Micrsoft free fonts | ||
# iosevka | ||
# open-sans # need for telegram app | ||
fonts = { | ||
enableDefaultFonts = true; | ||
enableFontDir = true; | ||
enableGhostscriptFonts = true; | ||
fonts = with pkgs; [ | ||
ubuntu_font_family | ||
fira-code fira-code-symbols | ||
]; | ||
fonts.fontconfig.defaultFonts.monospace = [ "Iosevka" ]; | ||
fonts.enableDefaultFonts = true; | ||
fontconfig.defaultFonts = { | ||
monospace = [ "Fira Code" ]; | ||
sansSerif = [ "Ubuntu" ]; | ||
}; | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
# Edit this configuration file to define what should be installed on | ||
# your system. Help is available in the configuration.nix(5) man page | ||
# and in the NixOS manual (accessible by running ‘nixos-help’). | ||
|
||
{ config, lib, pkgs, inputs, ... }: { | ||
|
||
users.extraUsers.rafiyq = { | ||
users.users.rafiyq = { | ||
isNormalUser = true; | ||
uid = 1000; | ||
extraGroups = | ||
[ "users" "wheel" "input" "audio" "networkmanager" "docker" "sway" ]; | ||
group = "users"; | ||
extraGroups = [ | ||
"wheel" | ||
"disk" | ||
"networkmanager" | ||
"audio" | ||
"video" | ||
"input" | ||
"sway" | ||
"kvm" | ||
"render" | ||
]; | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters