move packages

This commit is contained in:
Adithya 2023-04-07 19:53:00 +05:30
parent 8dcf43e4e0
commit b356f392f3
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 15 additions and 17 deletions

View file

@ -9,12 +9,26 @@
./virtualisation.nix
];
boot.cleanTmpDir = true;
console.useXkbConfig = true;
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
fonts = {
enableDefaultFonts = true;
fontDir.enable = true;
fonts = with pkgs; [
cantarell-fonts
liberation_ttf
(nerdfonts.override { fonts = [ "FiraCode" ]; })
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
};
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
@ -82,14 +96,11 @@
};
sound.enable = true;
time.timeZone = "Asia/Kolkata";
xdg = {
portal = {
xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-gtk xdg-desktop-portal-hyprland ];
};
};
system.stateVersion = "23.05";

View file

@ -1,18 +1,5 @@
{ pkgs, ... }: {
fonts = {
enableDefaultFonts = true;
fontDir.enable = true;
fonts = with pkgs; [
cantarell-fonts
liberation_ttf
(nerdfonts.override { fonts = [ "FiraCode" ]; })
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
};
hardware.gpgSmartcards.enable = true;
programs = {
dconf.enable = true;
git.enable = true;