mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 13:12:10 -08:00
chore: remove unneeded configuration from demeter that now lives in core
This commit is contained in:
parent
a0bc16e20c
commit
b2270408fc
1 changed files with 4 additions and 20 deletions
|
@ -74,32 +74,16 @@
|
||||||
"/dev/disk/by-uuid/af320a0f-b388-43f5-b5a3-af2b47cfc716";
|
"/dev/disk/by-uuid/af320a0f-b388-43f5-b5a3-af2b47cfc716";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.nix-ld = {
|
|
||||||
enable = true;
|
|
||||||
libraries = with pkgs; [
|
|
||||||
icu
|
|
||||||
xorg.libXtst
|
|
||||||
xorg.libXi
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
||||||
users.users.youwen = {
|
users.users.youwen = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Youwen Wu";
|
description = "Youwen Wu";
|
||||||
extraGroups = [ "networkmanager" ];
|
extraGroups = [
|
||||||
};
|
"networkmanager"
|
||||||
|
"wheel"
|
||||||
nix.settings = {
|
|
||||||
trusted-users = [
|
|
||||||
"root"
|
|
||||||
"youwen"
|
|
||||||
];
|
];
|
||||||
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zsh.enable = false;
|
|
||||||
programs.fish.enable = true;
|
|
||||||
users.users.youwen.shell = pkgs.fish;
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||||
|
|
Loading…
Reference in a new issue