Compare commits
No commits in common. "4df759d4c7488dcda77205d413604343e5a3ad9e" and "84993913c26cf3d7ea289d7371e055d591cbcfcd" have entirely different histories.
4df759d4c7
...
84993913c2
3 changed files with 20 additions and 33 deletions
|
@ -44,25 +44,6 @@
|
||||||
# Enable the GNOME Desktop Environment.
|
# Enable the GNOME Desktop Environment.
|
||||||
services.xserver.displayManager.gdm.enable = true;
|
services.xserver.displayManager.gdm.enable = true;
|
||||||
services.xserver.desktopManager.gnome.enable = true;
|
services.xserver.desktopManager.gnome.enable = true;
|
||||||
environment.gnome.excludePackages = (
|
|
||||||
with pkgs;
|
|
||||||
[
|
|
||||||
atomix
|
|
||||||
cheese
|
|
||||||
epiphany
|
|
||||||
geary
|
|
||||||
gedit
|
|
||||||
gnome-characters
|
|
||||||
gnome-music
|
|
||||||
gnome-photos
|
|
||||||
gnome-terminal
|
|
||||||
gnome-tour
|
|
||||||
hitori
|
|
||||||
iagno
|
|
||||||
totem
|
|
||||||
|
|
||||||
]
|
|
||||||
);
|
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
# services.xserver.xkb.layout = "us";
|
# services.xserver.xkb.layout = "us";
|
||||||
|
@ -85,10 +66,7 @@
|
||||||
# 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’.
|
||||||
users.users.fish = {
|
users.users.fish = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||||||
"wheel" # Enable ‘sudo’ for the user.
|
|
||||||
"dialout" # Enable serial access for the user.
|
|
||||||
];
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
tree
|
tree
|
||||||
git
|
git
|
||||||
|
@ -99,7 +77,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.firefox.enable = true;
|
programs.firefox.enable = true;
|
||||||
programs.neovim.defaultEditor.enable = true;
|
|
||||||
|
|
||||||
# List packages installed in system profile.
|
# List packages installed in system profile.
|
||||||
# You can use https://search.nixos.org/ to find more packages (and options).
|
# You can use https://search.nixos.org/ to find more packages (and options).
|
||||||
|
|
|
@ -17,14 +17,23 @@
|
||||||
ghostty
|
ghostty
|
||||||
stremio
|
stremio
|
||||||
julia
|
julia
|
||||||
|
qbittorrent
|
||||||
calibre
|
calibre
|
||||||
mpv
|
mpv
|
||||||
signal-desktop
|
signal-desktop
|
||||||
python3
|
python3
|
||||||
gh
|
gh
|
||||||
spotify
|
|
||||||
|
|
||||||
# Gaming
|
# Gaming
|
||||||
|
bottles
|
||||||
|
lutris
|
||||||
|
mangohud
|
||||||
|
dxvk_2
|
||||||
|
steam-run
|
||||||
|
vulkan-tools
|
||||||
|
path-of-building
|
||||||
|
wineWowPackages.stable
|
||||||
|
winetricks
|
||||||
(prismlauncher.override { gamemodeSupport = true; })
|
(prismlauncher.override { gamemodeSupport = true; })
|
||||||
|
|
||||||
# System & desktop tools
|
# System & desktop tools
|
||||||
|
@ -38,17 +47,18 @@
|
||||||
grub2
|
grub2
|
||||||
efibootmgr
|
efibootmgr
|
||||||
distrobox
|
distrobox
|
||||||
pqiv
|
|
||||||
|
|
||||||
# Dev tools
|
# Dev tools
|
||||||
legcord
|
legcord
|
||||||
hyfetch
|
hyfetch
|
||||||
kicad
|
arduino-cli
|
||||||
|
rust-bin.stable.latest.default
|
||||||
# Unsorted
|
tytools
|
||||||
ripgrep
|
inputs.zls.packages.x86_64-linux.zls
|
||||||
busybox
|
platformio
|
||||||
imagemagick
|
usbutils
|
||||||
|
teensy-loader-cli
|
||||||
|
teensyduino
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
rec {
|
rec {
|
||||||
username = "fish"; # username
|
username = "fish"; # username
|
||||||
name = "Fish"; # name/identifier
|
name = "Fish"; # name/identifier
|
||||||
email = "77413091+JulianBarbera@users.noreply.github.com"; # email (used for certain configurations)
|
email = "fish@fishcat.fish"; # email (used for certain configurations)
|
||||||
dotfilesDir = "~/config"; # absolute path of the local repo
|
dotfilesDir = "~/config"; # absolute path of the local repo
|
||||||
theme = "catppuccin-mocha"; # name of theme that stylix will use
|
theme = "catppuccin-mocha"; # name of theme that stylix will use
|
||||||
browser = "firefox"; # Default browser; must select one from ./user/app/browser/
|
browser = "firefox"; # Default browser; must select one from ./user/app/browser/
|
||||||
|
|
Loading…
Reference in a new issue