mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-19 02:46:06 -07:00
clean up default physical a little
This commit is contained in:
parent
debd040e83
commit
08be9f6272
@ -4,6 +4,10 @@ let cfg = config.modules.desktop.kitty;
|
|||||||
in {
|
in {
|
||||||
options.modules.desktop.kitty.enable = lib.mkEnableOption "kitty";
|
options.modules.desktop.kitty.enable = lib.mkEnableOption "kitty";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
nerdfonts
|
||||||
|
];
|
||||||
|
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "Gruvbox Dark";
|
theme = "Gruvbox Dark";
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
nix = {
|
nix = {
|
||||||
package = pkgs.nixFlakes;
|
package = pkgs.nixFlakes;
|
||||||
extraOptions = "experimental-features = nix-command flakes";
|
extraOptions = "experimental-features = nix-command flakes";
|
||||||
|
|
||||||
settings.auto-optimise-store = true;
|
settings.auto-optimise-store = true;
|
||||||
gc = {
|
gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
@ -24,11 +23,11 @@
|
|||||||
nixpkgs.overlays = import ../../../lib/overlays.nix;
|
nixpkgs.overlays = import ../../../lib/overlays.nix;
|
||||||
|
|
||||||
# Hardware options
|
# Hardware options
|
||||||
hardware.bluetooth.enable = true;
|
#hardware.bluetooth.enable = true;
|
||||||
hardware.bluetooth.package = pkgs.bluez;
|
#hardware.bluetooth.package = pkgs.bluez;
|
||||||
hardware.sensor.iio.enable = true;
|
#hardware.sensor.iio.enable = true;
|
||||||
hardware.graphics.enable = true;
|
#hardware.graphics.enable = true;
|
||||||
hardware.graphics.enable32Bit = true;
|
#hardware.graphics.enable32Bit = true;
|
||||||
|
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
@ -38,11 +37,6 @@
|
|||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
# Fonts
|
|
||||||
fonts.packages = with pkgs; [
|
|
||||||
nerdfonts
|
|
||||||
];
|
|
||||||
|
|
||||||
# Define user account.
|
# Define user account.
|
||||||
users.users.${user} = {
|
users.users.${user} = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
@ -51,7 +45,6 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
cowsay # A program which generates ASCII pictures of a cow with a message
|
|
||||||
inputs.agenix.packages.x86_64-linux.default
|
inputs.agenix.packages.x86_64-linux.default
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user