mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
Merge remote-tracking branch 'refs/remotes/origin/master'
This commit is contained in:
commit
1851d648b9
9 changed files with 141 additions and 121 deletions
|
|
@ -4,7 +4,8 @@
|
|||
[(import ./bootloader.nix)]
|
||||
++ [(import ./docker.nix)]
|
||||
++ [(import ./hardware.nix)]
|
||||
++ [(import ./printing.nix)]
|
||||
++ [(import ./displaylink.nix)]
|
||||
# ++ [(import ./printing.nix)]
|
||||
# ++ [(import ./openrgb.nix)]
|
||||
++ [(import ./xserver.nix)]
|
||||
++ [(import ./network.nix)]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
{ ... }: {
|
||||
{ pkgs, ... }: {
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
nssmdns4 = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
hplip
|
||||
hplipWithPlugin
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,7 +36,19 @@
|
|||
|
||||
# powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
i18n.supportedLocales = [
|
||||
"en_US.UTF-8/UTF-8"
|
||||
"ja_JP.UTF-8/UTF-8"
|
||||
];
|
||||
|
||||
# Font packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-cjk-serif
|
||||
ipaexfont
|
||||
];
|
||||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,20 @@
|
|||
{ username, ... }:
|
||||
{
|
||||
# services = {
|
||||
# xserver = {
|
||||
# enable = true;
|
||||
# xkb.layout = "us";
|
||||
# };
|
||||
# };
|
||||
services = {
|
||||
xserver = {
|
||||
enable = true;
|
||||
xkb.layout = "us";
|
||||
# displayManager.lightdm.greeters.slick.enable = true;
|
||||
displayManager.lightdm.greeters.mini = {
|
||||
enable = true;
|
||||
user = "liv";
|
||||
extraConfig = ''
|
||||
[greeter]
|
||||
show-password-label = false
|
||||
[greeter-theme]
|
||||
background-image = "/home/liv/Pictures/wallpapers/others/anime-sky-lonely.png"
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue