mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-22 15:15:50 -06:00
linting
This commit is contained in:
parent
67398aed9e
commit
0bb00bb77a
1 changed files with 10 additions and 16 deletions
|
@ -13,14 +13,11 @@
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(self: super: /* overlay goes here */
|
(self: super:
|
||||||
|
|
||||||
{
|
{
|
||||||
wavebox = super.wavebox.overrideAttrs (old: {
|
wavebox = super.wavebox.overrideAttrs (old: {
|
||||||
version = "10.107.10";
|
version = "10.107.10";
|
||||||
src = super.fetchurl {
|
src = super.fetchurl {
|
||||||
# url = "https://github.com/wavebox/waveboxapp/releases/download/v${version}/${tarball}";
|
|
||||||
# sha256 = "0z04071lq9bfyrlg034fmvd4346swgfhxbmsnl12m7c2m2b9z784";
|
|
||||||
url = "https://download.wavebox.app/stable/linux/tar/Wavebox_10.107.10-2.tar.gz";
|
url = "https://download.wavebox.app/stable/linux/tar/Wavebox_10.107.10-2.tar.gz";
|
||||||
sha256 = "sha256-cbcAmnq9rJlQy6Y+06G647R72HWcK97KgSsYgusSB58=";
|
sha256 = "sha256-cbcAmnq9rJlQy6Y+06G647R72HWcK97KgSsYgusSB58=";
|
||||||
};
|
};
|
||||||
|
@ -34,12 +31,13 @@
|
||||||
libXScrnSaver
|
libXScrnSaver
|
||||||
libXtst
|
libXtst
|
||||||
libXdamage
|
libXdamage
|
||||||
] ++ [
|
] ++
|
||||||
pkgs.alsa-lib
|
(with pkgs; [
|
||||||
pkgs.gtk3
|
alsa-lib
|
||||||
pkgs.nss
|
gtk3
|
||||||
pkgs.mesa
|
nss
|
||||||
];
|
mesa
|
||||||
|
]);
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
# make xdg-open overrideable at runtime
|
# make xdg-open overrideable at runtime
|
||||||
makeWrapper $out/opt/wavebox/wavebox $out/bin/wavebox \
|
makeWrapper $out/opt/wavebox/wavebox $out/bin/wavebox \
|
||||||
|
@ -52,11 +50,9 @@
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# networking.hostName = "nixos"; # Define your hostname.
|
# networking.hostName = "nixos"; # Define your hostname.
|
||||||
|
|
||||||
# time.timeZone = "Europe/Amsterdam";
|
time.timeZone = "America/Chicago";
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
users.defaultUserShell = pkgs.zsh;
|
users.defaultUserShell = pkgs.zsh;
|
||||||
|
@ -64,9 +60,7 @@
|
||||||
# for compatibility add zsh to list of /etc/shells
|
# for compatibility add zsh to list of /etc/shells
|
||||||
environment.shells = with pkgs; [ zsh ];
|
environment.shells = with pkgs; [ zsh ];
|
||||||
|
|
||||||
|
# overwrite demo as default login
|
||||||
|
|
||||||
# overrwite default login
|
|
||||||
services.xserver.displayManager.autoLogin.enable = lib.mkForce false;
|
services.xserver.displayManager.autoLogin.enable = lib.mkForce false;
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
|
|
Loading…
Add table
Reference in a new issue