various stuff
This commit is contained in:
parent
407160b012
commit
6b44ec946b
15 changed files with 288 additions and 134 deletions
|
@ -2,6 +2,8 @@
|
|||
{
|
||||
imports = [ ./hardware.nix ];
|
||||
|
||||
user.name = "chris";
|
||||
|
||||
fileSystems."/home/chris/games" = {
|
||||
device = "/dev/disk/by-label/games";
|
||||
fsType = "ext4";
|
||||
|
@ -52,7 +54,7 @@
|
|||
};
|
||||
|
||||
editors = {
|
||||
default = "nano";
|
||||
default = "zed";
|
||||
vscodium.enable = true;
|
||||
zed.enable = true;
|
||||
nvim.enable = true;
|
||||
|
|
65
hosts/chris-pc/users/chris.nix
Normal file
65
hosts/chris-pc/users/chris.nix
Normal file
|
@ -0,0 +1,65 @@
|
|||
// { config, lib, pkgs, ... }:
|
||||
// {
|
||||
// full_name = "WOOT";
|
||||
|
||||
// modules = {
|
||||
// themes = {
|
||||
// enable = true;
|
||||
// theme = "everforest";
|
||||
// polarity = "dark";
|
||||
// };
|
||||
|
||||
// develop = {
|
||||
// rust.enable = true;
|
||||
// js.enable = true;
|
||||
// dotnet.enable = true;
|
||||
// };
|
||||
|
||||
// # EXPERIMENTS
|
||||
// # services.games.minecraft.enable = true;
|
||||
// services.auth.enable = true;
|
||||
|
||||
// desktop = {
|
||||
// plasma.enable = true;
|
||||
// type = "wayland";
|
||||
|
||||
// applications = {
|
||||
// communication.enable = true;
|
||||
// email.enable = true;
|
||||
// office.enable = true;
|
||||
// steam.enable = true;
|
||||
// recording.enable = true;
|
||||
// };
|
||||
|
||||
// terminal = {
|
||||
// default = "ghostty";
|
||||
// alacritty.enable = true;
|
||||
// ghostty.enable = true;
|
||||
// };
|
||||
|
||||
// editors = {
|
||||
// default = "zed";
|
||||
// vscodium.enable = true;
|
||||
// zed.enable = true;
|
||||
// nvim.enable = true;
|
||||
// nano.enable = true;
|
||||
// kate.enable = true;
|
||||
// };
|
||||
|
||||
// browsers = {
|
||||
// default = "chromium";
|
||||
// firefox.enable = true;
|
||||
// chrome.enable = true;
|
||||
// };
|
||||
|
||||
// games = {
|
||||
// minecraft.enable = true;
|
||||
// };
|
||||
// };
|
||||
|
||||
// shell = {
|
||||
// default = "zsh";
|
||||
// corePkgs.enable = true;
|
||||
// };
|
||||
// };
|
||||
// }
|
Loading…
Add table
Add a link
Reference in a new issue