/some/ things should work now
This commit is contained in:
parent
7f7d9af446
commit
4cec867a78
21 changed files with 190 additions and 122 deletions
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: let
|
||||
{
|
||||
self,
|
||||
super,
|
||||
root,
|
||||
}: {pkgs, ...}: let
|
||||
list-of-libraries = with pkgs; [
|
||||
alsa-lib
|
||||
at-spi2-atk
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{lib, ...}: {
|
||||
{
|
||||
self,
|
||||
super,
|
||||
root,
|
||||
}: {
|
||||
imports = [
|
||||
./security.nix
|
||||
./users.nix
|
||||
./ssh.nix
|
||||
./locale.nix
|
||||
../nix
|
||||
../programs/zsh.nix
|
||||
super.security
|
||||
super.users
|
||||
super.ssh
|
||||
super.locale
|
||||
root.nix.default
|
||||
root.programs.zsh
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
self,
|
||||
super,
|
||||
root,
|
||||
}: {pkgs, ...}: {
|
||||
documentation = {
|
||||
dev.enable = true;
|
||||
# man.generateCaches = true; # this does slow down builds by quite a lot
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{lib, ...}: {
|
||||
{...}: {lib, ...}: {
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
supportedLocales = [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
{...}: {pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
htop
|
||||
btop
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
{...}: {pkgs, ...}: {
|
||||
users.users.xun = {
|
||||
isNormalUser = true;
|
||||
initialPassword = "nixos";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue