add basic programs
This commit is contained in:
parent
d372ccd324
commit
878f8db8da
1 changed files with 11 additions and 2 deletions
|
@ -1,9 +1,18 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [ ./hardware-configuration.nix ];
|
imports = [ ./hardware-configuration.nix ];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [ kitty.terminfo kakoune vim git ];
|
environment.systemPackages = with pkgs; [
|
||||||
|
kitty.terminfo
|
||||||
|
kakoune
|
||||||
|
vim
|
||||||
|
git
|
||||||
|
htop
|
||||||
|
wget
|
||||||
|
less
|
||||||
|
killall
|
||||||
|
];
|
||||||
|
|
||||||
boot.cleanTmpDir = true;
|
boot.tmp.cleanOnBoot = true;
|
||||||
zramSwap.enable = true;
|
zramSwap.enable = true;
|
||||||
networking.hostName = "egirls";
|
networking.hostName = "egirls";
|
||||||
networking.domain = "gay";
|
networking.domain = "gay";
|
||||||
|
|
Loading…
Reference in a new issue