From 544578c6a193623fa75fabb332bfb2e60b2d4ab2 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Fri, 2 Aug 2024 15:46:19 +0200 Subject: [PATCH] cleanup --- flake.nix | 3 --- home-manager/vscode.nix | 6 +++--- nixos/configuration.nix | 5 +---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index ab91023..89a1e75 100644 --- a/flake.nix +++ b/flake.nix @@ -19,9 +19,6 @@ jujutsu.url = "github:martinvonz/jj"; jujutsu.inputs.nixpkgs.follows = "nixpkgs"; - - # TODO: Add any other flake you might need - # hardware.url = "github:nixos/nixos-hardware"; }; outputs = { nixpkgs, home-manager, nur, ... }@inputs: { diff --git a/home-manager/vscode.nix b/home-manager/vscode.nix index 710513d..4fcd142 100644 --- a/home-manager/vscode.nix +++ b/home-manager/vscode.nix @@ -103,12 +103,12 @@ name = "riverdelta"; version = "0.1.0"; src = builtins.fetchGit { - url = "https://github.com/Nilstrieb/riverdelta"; + url = "https://github.com/Noratrieb/riverdelta"; rev = "64d81b56084d9a7663517b367b4533fb8ea83a92"; }; - vscodeExtPublisher = "Nilstrieb"; + vscodeExtPublisher = "Noratrieb"; vscodeExtName = "riverdelta"; - vscodeExtUniqueId = "Nilstrieb.riverdelta"; + vscodeExtUniqueId = "Noratrieb.riverdelta"; buildPhase = '' runHook preBuild; cd ./vscode diff --git a/nixos/configuration.nix b/nixos/configuration.nix index f04a96e..40c6d49 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -170,7 +170,6 @@ in services.systembus-notify.enable = true; # Enable sound with pipewire. - sound.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { @@ -194,7 +193,6 @@ in useRoutingFeatures = "both"; }; - # TODO: Configure your system-wide user settings (groups, etc), add more users as needed. users = { users = { nora = { @@ -202,7 +200,6 @@ in isNormalUser = true; home = "/home/nora"; openssh.authorizedKeys.keys = [ - # TODO: Add your SSH public key(s) here, if you plan on using SSH to connect "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0n1ikUG9rYqobh7WpAyXrqZqxQoQ2zNJrFPj12gTpP" ]; extraGroups = [ "wheel" "networkmanager" "audio" "libvirtd" ]; @@ -214,7 +211,7 @@ in }; extraGroups = { vboxusers = { - #members = [ "nils" ]; + #members = [ "nora" ]; }; }; };