151 lines
3.8 KiB
Nix
151 lines
3.8 KiB
Nix
# Edit this configuration file to define what should be installed on
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "cattop";
|
|
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
|
|
|
# Set your time zone.
|
|
Time.timeZone = "America/Los_Angeles";
|
|
|
|
services.xserver.enable = true;
|
|
|
|
services.displayManager.gdm.enable = true;
|
|
services.desktopManager.gnome.enable = true;
|
|
environment.gnome.excludePackages = (
|
|
with pkgs;
|
|
[
|
|
adwaita-fonts
|
|
adwaita-icon-theme
|
|
baobab
|
|
decibels
|
|
epiphany
|
|
evince
|
|
file-roller
|
|
geary
|
|
gnome-backgrounds
|
|
gnome-calculator
|
|
gnome-calendar
|
|
gnome-characters
|
|
gnome-clocks
|
|
gnome-connections
|
|
gnome-console
|
|
gnome-contacts
|
|
gnome-disk-utility
|
|
gnome-font-viewer
|
|
gnome-logs
|
|
gnome-maps
|
|
gnome-music
|
|
gnome-shell-extensions
|
|
gnome-system-monitor
|
|
gnome-screenshot
|
|
gnome-text-editor
|
|
gnome-themes-extra
|
|
gnome-tour
|
|
gnome-user-docs
|
|
gnome-weather
|
|
loupe
|
|
nautilus
|
|
orca
|
|
seahorse
|
|
simple-scan
|
|
snapshot
|
|
sushi
|
|
totem
|
|
yelp
|
|
]
|
|
);
|
|
|
|
services.printing.enable = true;
|
|
|
|
# Enable sound.
|
|
# services.pulseaudio.enable = true;
|
|
# OR
|
|
# services.pipewire = {
|
|
# enable = true;
|
|
# pulse.enable = true;
|
|
# };
|
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
|
# services.libinput.enable = true;
|
|
|
|
users.users.fish = {
|
|
isNormalUser = true;
|
|
shell = pkgs.fish;
|
|
extraGroups = [
|
|
"wheel"
|
|
"dialout"
|
|
];
|
|
packages = with pkgs; [
|
|
tree
|
|
git
|
|
nh
|
|
vim
|
|
fish
|
|
];
|
|
};
|
|
programs.git = {
|
|
enable = true;
|
|
# extraConfig = {
|
|
# push = {
|
|
# autoSetupRemote = true;
|
|
# };
|
|
# };
|
|
};
|
|
|
|
programs.firefox.enable = true;
|
|
programs.neovim.enable = true;
|
|
#programs.neovim.defaultEditor.enable = true;
|
|
|
|
# List packages installed in system profile.
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
];
|
|
|
|
programs.fish.enable = true;
|
|
programs.mtr.enable = true;
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
# List services that you want to enable:
|
|
|
|
# Enable the OpenSSH daemon.
|
|
# services.openssh.enable = true;
|
|
|
|
# Copy the NixOS configuration file and link it from the resulting system
|
|
# (/run/current-system/configuration.nix). This is useful in case you
|
|
# accidentally delete configuration.nix.
|
|
# system.copySystemConfiguration = true;
|
|
|
|
# This option defines the first version of NixOS you have installed on this particular machine,
|
|
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
|
#
|
|
# Most users should NEVER change this value after the initial install, for any reason,
|
|
# even if you've upgraded your system to a new NixOS release.
|
|
#
|
|
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
|
|
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
|
|
# to actually do that.
|
|
#
|
|
# This value being lower than the current NixOS release does NOT mean your system is
|
|
# out of date, out of support, or vulnerable.
|
|
#
|
|
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
|
|
# and migrated your data accordingly.
|
|
#
|
|
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
|
|
system.stateVersion = "25.05"; # Did you read the comment?
|
|
}
|