2024-11-26 17:15:31 -08:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
{
|
|
|
|
|
pkgs,
|
2024-12-26 23:50:53 -08:00
|
|
|
|
inputs,
|
2024-11-26 17:15:31 -08:00
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
{
|
2024-11-29 00:06:22 -08:00
|
|
|
|
networking.hostName = "cassini"; # Define your hostname.
|
2024-11-26 17:15:31 -08:00
|
|
|
|
|
2024-12-26 23:50:53 -08:00
|
|
|
|
liminalOS = {
|
|
|
|
|
flakeLocation = "/home/youwen/.config/liminalOS";
|
|
|
|
|
defaultEditor = inputs.viminal.packages.${pkgs.system}.default;
|
|
|
|
|
formFactor = "desktop";
|
|
|
|
|
theming = {
|
|
|
|
|
wallpaper = "${inputs.wallpapers}/aesthetic/afterglow_city_skyline_at_night.png";
|
|
|
|
|
# if you don't manually set polarity when using manual colorscheme, GTK
|
|
|
|
|
# apps won't respect colorscheme
|
|
|
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
|
|
|
|
|
polarity = "dark";
|
|
|
|
|
};
|
|
|
|
|
system = {
|
|
|
|
|
networking.enable = false;
|
|
|
|
|
};
|
|
|
|
|
wsl.enable = true;
|
2024-11-26 17:15:31 -08:00
|
|
|
|
};
|
|
|
|
|
|
2024-12-26 23:50:53 -08:00
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "America/Los_Angeles";
|
2024-11-26 17:15:31 -08:00
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
users.users.youwen = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
description = "Youwen Wu";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nix.settings = {
|
|
|
|
|
trusted-users = [
|
|
|
|
|
"root"
|
|
|
|
|
"youwen"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-26 23:50:53 -08:00
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
2024-11-26 17:15:31 -08:00
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
|
|
|
}
|