devvian
This commit is contained in:
parent
69715b78b6
commit
2969b161f0
4 changed files with 12 additions and 2 deletions
|
|
@ -16,7 +16,7 @@
|
|||
ls = "exa";
|
||||
ll = "exa -lah";
|
||||
grep = "rg";
|
||||
cat = "bat";
|
||||
cat = "bat -p";
|
||||
tsla-fan = "ipmitool -H 10.30.0.3 -U ADMIN -P ADMIN raw 0x30 0x70 0x66 0x01 0x0";
|
||||
|
||||
# NixOS commands
|
||||
|
|
@ -103,6 +103,9 @@
|
|||
# overide broken config
|
||||
xdg.configFile."obsidian/obsidian.json".source = lib.mkForce ./conf/obsidian.json;
|
||||
|
||||
# nixpkgs config
|
||||
xdg.configFile."nixpkgs/config.nix".source = ./conf/config.nix;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
signal-desktop
|
||||
discord
|
||||
|
|
|
|||
1
home/conf/config.nix
Normal file
1
home/conf/config.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ allowUnfree = true; }
|
||||
|
|
@ -121,6 +121,7 @@
|
|||
krita
|
||||
edk2-uefi-shell
|
||||
obsidian
|
||||
gparted
|
||||
]; # end systemPackages
|
||||
gnome.excludePackages = with pkgs; [
|
||||
evolution
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
enable = true;
|
||||
theme = "rings";
|
||||
themePackages = with pkgs; [
|
||||
# By default we would install all themes
|
||||
(adi1090x-plymouth-themes.override {
|
||||
selected_themes = [ "rings" ];
|
||||
})
|
||||
|
|
@ -49,4 +48,10 @@
|
|||
tod.driver = pkgs.libfprint-2-tod1-goodix;
|
||||
};
|
||||
};
|
||||
hardware = {
|
||||
bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue