mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-22 11:15:49 -06:00
idk
This commit is contained in:
parent
25750c2420
commit
8dfbafaed2
2 changed files with 18 additions and 11 deletions
|
@ -13,14 +13,12 @@
|
||||||
'';
|
'';
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
|
||||||
# todo import from a different file
|
|
||||||
|
|
||||||
networking.hostName = "nixos-vm"; # Define your hostname.
|
networking.hostName = "nixos-vm"; # Define your hostname.
|
||||||
|
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
programs.dconf.enable = true;
|
||||||
# overwrite demo as default login
|
# overwrite demo as default login
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -53,8 +51,8 @@
|
||||||
# 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 ];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
fuse
|
fuse
|
||||||
zsh
|
zsh
|
||||||
|
|
||||||
|
@ -71,7 +69,7 @@
|
||||||
chezmoi
|
chezmoi
|
||||||
delta
|
delta
|
||||||
gh
|
gh
|
||||||
|
|
||||||
nixpkgs-fmt
|
nixpkgs-fmt
|
||||||
|
|
||||||
xdotool
|
xdotool
|
||||||
|
@ -79,12 +77,18 @@
|
||||||
eww
|
eww
|
||||||
rofi
|
rofi
|
||||||
dunst
|
dunst
|
||||||
feh
|
feh
|
||||||
|
|
||||||
picom
|
picom
|
||||||
|
gtk3
|
||||||
|
|
||||||
|
gnome.adwaita-icon-theme
|
||||||
|
gnome.gnome-settings-daemon
|
||||||
|
catppuccin-gtk
|
||||||
|
|
||||||
|
|
||||||
(python3.withPackages (p: with p;
|
# (python3.withPackages (p: with p;
|
||||||
[ pynvim ]))
|
# [ pynvim ]))
|
||||||
|
|
||||||
# firefox
|
# firefox
|
||||||
wavebox
|
wavebox
|
||||||
|
@ -93,12 +97,15 @@
|
||||||
(vivaldi.override {
|
(vivaldi.override {
|
||||||
proprietaryCodecs = true;
|
proprietaryCodecs = true;
|
||||||
enableWidevine = false;
|
enableWidevine = false;
|
||||||
|
commandLineArgs = "--force-dark-mode";
|
||||||
})
|
})
|
||||||
|
|
||||||
|
vscode.fhs
|
||||||
|
|
||||||
go
|
go
|
||||||
rustup
|
rustup
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
inputs.nix-ld.nixosModules.nix-ld
|
inputs.nix-ld.nixosModules.nix-ld
|
||||||
|
./overlays.nix
|
||||||
];
|
];
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue