Add kirigami and some small fixes to GLaDOS

This commit is contained in:
Lillian-Violet 2023-11-03 21:57:49 +01:00
parent 816b858c75
commit 7a91bb818f
3 changed files with 40 additions and 7 deletions

View file

@ -89,6 +89,7 @@
alejandra
git-filter-repo
home-manager
kirigami
libsForQt5.discover
libsForQt5.kdepim-addons
libsForQt5.packagekit-qt

View file

@ -10,6 +10,8 @@
}: {
# You can import other NixOS modules here
imports = [
# Import home-manager's NixOS module
inputs.home-manager.nixosModules.home-manager
# If you want to use modules your own flake exports (from modules/nixos):
# outputs.nixosModules.example
@ -24,6 +26,14 @@
./hardware-configuration.nix
];
home-manager = {
extraSpecialArgs = {inherit inputs outputs;};
users = {
# Import your home-manager configuration
lillian = import ../../home-manager/GLaDOS-Lillian.nix;
};
};
nixpkgs = {
# You can add overlays here
overlays = [
@ -46,6 +56,9 @@
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
permittedInsecurePackages = [
"electron-22.3.27"
];
};
};
@ -72,10 +85,11 @@
};
environment.systemPackages = with pkgs; [
rage
age
alejandra
git-filter-repo
home-manager
kirigami
libsForQt5.discover
libsForQt5.kdepim-addons
libsForQt5.packagekit-qt
@ -154,7 +168,7 @@
enable = true;
};
networking.hostName = "EDI";
networking.hostName = "GLaDOS";
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 3;