Merge branch 'master' of ssh://giugl.io.gitea:10022/peperunas/nixos
This commit is contained in:
commit
91dcbb6a6c
10
common.nix
10
common.nix
@ -2,12 +2,14 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
i18n = {
|
|
||||||
consoleFont = "Lat2-Terminus16";
|
console = {
|
||||||
consoleKeyMap = "us";
|
keyMap = "us";
|
||||||
defaultLocale = "en_US.UTF-8";
|
font = "Lat2-Terminus16";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
autoOptimiseStore = true;
|
autoOptimiseStore = true;
|
||||||
nixPath = [
|
nixPath = [
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
{config, pkgs, ...}:
|
{config, pkgs, ...}:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [ <home-manager/nixos> ];
|
||||||
|
|
||||||
users.users.giulio = {
|
users.users.giulio = {
|
||||||
description = "Giulio De Pasquale";
|
description = "Giulio De Pasquale";
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
@ -12,4 +14,8 @@
|
|||||||
enableBashCompletion = true;
|
enableBashCompletion = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home-manager.users.giulio = {
|
||||||
|
imports = [ ./home ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user