revamp of structure
This commit is contained in:
parent
275586f9c2
commit
b5365e6ab3
26 changed files with 383 additions and 393 deletions
35
modules/nixos/default.nix
Normal file
35
modules/nixos/default.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./i18n.nix
|
||||
];
|
||||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
htop
|
||||
];
|
||||
|
||||
environment.shellAliases = {
|
||||
vim = "nvim";
|
||||
};
|
||||
|
||||
services.openssh.enable = true;
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
nix = {
|
||||
settings = {
|
||||
auto-optimise-store = true;
|
||||
allowed-users = [ "@wheel" ];
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
environment.variables."NIX_AUTO_RUN" = "1";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue