tohru: rearrange files
This commit is contained in:
parent
e9f64faa6f
commit
50b47981c8
|
@ -1,14 +1,10 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[
|
./hardware-configuration.nix
|
||||||
./hardware-configuration.nix
|
./syncthing.nix
|
||||||
./home.nix
|
];
|
||||||
../../services/fonts.nix
|
|
||||||
../../services/steam.nix
|
|
||||||
./syncthing.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
@ -26,6 +22,12 @@
|
||||||
qenya.services.fonts.enable = true;
|
qenya.services.fonts.enable = true;
|
||||||
qenya.services.steam.enable = true;
|
qenya.services.steam.enable = true;
|
||||||
|
|
||||||
|
home-manager.users.qenya = { pkgs, ... }: {
|
||||||
|
imports = [
|
||||||
|
./home.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
i18n.defaultLocale = "en_GB.UTF-8";
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||||||
|
|
|
@ -1,33 +1,31 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home-manager.users.qenya = { pkgs, ... }: {
|
dconf.enable = true;
|
||||||
dconf.enable = true;
|
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
firefox.enable = true; # TODO: config is not yet nix-ified
|
firefox.enable = true; # TODO: config is not yet nix-ified
|
||||||
vscode.enable = true;
|
vscode.enable = true;
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = (with pkgs; [
|
|
||||||
bitwarden
|
|
||||||
discord
|
|
||||||
foliate
|
|
||||||
gimp-with-plugins
|
|
||||||
jellyfin-media-player
|
|
||||||
keepassxc
|
|
||||||
tor-browser-bundle-bin
|
|
||||||
|
|
||||||
# libreoffice
|
|
||||||
libreoffice
|
|
||||||
hunspell
|
|
||||||
hunspellDicts.en_GB-ise
|
|
||||||
|
|
||||||
# games
|
|
||||||
openttd
|
|
||||||
prismlauncher
|
|
||||||
nur.repos.qenya.digital-a-love-story
|
|
||||||
nur.repos.qenya.dont-take-it-personally-babe
|
|
||||||
]);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
bitwarden
|
||||||
|
discord
|
||||||
|
foliate
|
||||||
|
gimp-with-plugins
|
||||||
|
jellyfin-media-player
|
||||||
|
keepassxc
|
||||||
|
tor-browser-bundle-bin
|
||||||
|
|
||||||
|
# libreoffice
|
||||||
|
libreoffice
|
||||||
|
hunspell
|
||||||
|
hunspellDicts.en_GB-ise
|
||||||
|
|
||||||
|
# games
|
||||||
|
openttd
|
||||||
|
prismlauncher
|
||||||
|
nur.repos.qenya.digital-a-love-story
|
||||||
|
nur.repos.qenya.dont-take-it-personally-babe
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue