Compare commits

..

No commits in common. "4aeb6d4d537b7e73cf03cfbdbd12fea620e2ba5e" and "0c053bde9c7032b7394951c68aac1116fbdd457a" have entirely different histories.

3 changed files with 2 additions and 32 deletions

View file

@ -10,7 +10,6 @@
./comma.nix ./comma.nix
./bash.nix ./bash.nix
./git.nix ./git.nix
./starship.nix
]; ];
# Some programs dont have a programs.*.enable option, so I install their package here # Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -1,22 +0,0 @@
{ config, ... }:
{
programs.starship = {
enable = true;
settings = {
nix_shell = {
disabled = false;
heuristic = true;
symbol = " ";
};
os = {
disabled = false;
symbols.NixOS = " ";
};
directory = {
disabled = false;
read_only = " 󰌾";
};
};
};
}

View file

@ -1,16 +1,9 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# Enable scanning
hardware.sane = { hardware.sane = {
enable = true; enable = true;
extraBackends = [ pkgs.sane-airscan ]; extraBackends = [ pkgs.sane-airscan ];
}; };
users.users.toast.extraGroups = [ "scanner" ]; users.users.toast.extraGroups = [ "scanner" ];
# Set up fonts
fonts.fonts = [
( pkgs.nerdfonts.override { fonts = [ "Hack" "JetBrainsMono" ]; } )
];
} }